Search:

Page 1 of 5 1 2 3 4

Search: Search took 1.00 seconds.

  1. Replies
    30
    Views
    73,778

    https://killtube.org/showthread.php?1730-Libcod-fo...

    https://killtube.org/showthread.php?1730-Libcod-for-windows&p=10962&viewfull=1#post10962



    But investing a bit work, it should work nicely with Visual Studio aswell
  2. Replies
    34
    Views
    35,955

    Just look at the callbacks in...

    Just look at the callbacks in callback_playercommand, you'll see the callvotes soon enough :)
  3. Replies
    26
    Views
    42,772

    Man, that's nearly 10 years of accumulated...

    Man, that's nearly 10 years of accumulated scripting knowledge. Can you show us any reference to your epic work? If you dare, could you quickly implement something like this?

    ...
  4. Replies
    8
    Views
    7,049

    https://znation.nl/cod4script/ ...

    https://znation.nl/cod4script/

    Rightbuttonpressed() etc
  5. Thread: Kicking bots

    by voron00
    Replies
    27
    Views
    44,132

    You have to wait a little bit before freeing slot...

    You have to wait a little bit before freeing slot or just use libcod from my repo, has an autofreeslot for bots so you can just normally kick it. Also your isBot definiton seems wrong, just use:
    ...
  6. Replies
    2
    Views
    20,906

    Just add self getvelocity() instead of your...

    Just add self getvelocity() instead of your position-saving stuff. For more fun, add an isonground() check and add gravitational acceleration if not.
  7. Replies
    3
    Views
    4,564

    Dont mind me, just silently cursing at myself for...

    Dont mind me, just silently cursing at myself for adding borders to my menus manually for years now.
  8. Replies
    3
    Views
    4,564

    You could also do it like this: ...

    You could also do it like this:



    mouseEnter
    {
    setItemColor "some_item" forecolor 1 1 1 1
    }
    mouseExit
    {
  9. Replies
    2
    Views
    132,124

    They already solved this exploit in version...

    They already solved this exploit in version 7.3.3.
    https://notepad-plus-plus.org/news/notepad-7.3.3-fix-cia-hacking-issue.html
  10. Replies
    34
    Views
    35,955

    It's a menu hud, hud.menu if I remember correctly.

    It's a menu hud, hud.menu if I remember correctly.
  11. Replies
    19
    Views
    27,768

    Simpler version: headshot(meters) {...

    Simpler version:



    headshot(meters)
    {
    self notify("headshot");
    self endon("headshot");
    self endon("disconnect");
    if(isdefined(self.headshothud))
  12. Replies
    19
    Views
    27,768

    If you have libcod, you can also use Izno's...

    If you have libcod, you can also use Izno's unprecached setText() patch
  13. Replies
    19
    Views
    27,768

    You could also .value or setstring() it, but that...

    You could also .value or setstring() it, but that didnt make sense given the stuff I typed in the example.

    For your thing:

    hud.label = &"Headshot: ^1&&1 ^7m";
    hud.value = 36;

    Might need to...
  14. Replies
    19
    Views
    27,768

    Put a &&1 in your label. hud.label = &"&&1 is...

    Put a &&1 in your label.

    hud.label = &"&&1 is on a killing spree";
    hud setplayernamestring(player);
  15. Replies
    34
    Views
    35,955

    You could refer to them as "configstring strings"...

    You could refer to them as "configstring strings" or "precached strings" (sic) ^^

    guiismiti:

    Basically you need to track yourself which values your precached strings have. IzNoGoD compiled this...
  16. Replies
    7
    Views
    101,749

    In the last days I've reimplemented the CoDScript...

    In the last days I've reimplemented the CoDScript style "threads" (coroutines) inside JavaScript/Duktape. As test engine I use ET:Legacy, because that's like CoD 0.5, lol.

    In the grand scheme, I...
  17. Replies
    34
    Views
    35,955

    In iprintln you can use only simple strings (like...

    In iprintln you can use only simple strings (like str="string").
    And as I know, strings with & (don't know a real name of this strings. somebody tell me, please) you can only precache and use for...
  18. Replies
    7
    Views
    101,749

    tdm, dm, ctf, hq, htf on the one server

    tdm, dm, ctf, hq, htf on the one server
  19. Replies
    7
    Views
    101,749

    codjumper modding.

    codjumper modding.
  20. Replies
    7
    Views
    101,749

    DeathRun...

    DeathRun...
  21. Added YouTube / GitHub / Steam to user profile

    Hey all,

    you can now add your YouTube / GitHub / Steam profile links to your user account. I had to add some regexes to prevent the input against XSS attacks, so this is what I came up with:


    ...
  22. Replies
    2
    Views
    7,166

    Ms. Google says no, but you should go create it...

    Ms. Google says no, but you should go create it yourself, she said. :D
  23. Replies
    4
    Views
    6,240

    Well, Java can run "native", it just needs the...

    Well, Java can run "native", it just needs the native code dependencies of Minecraft compiled for ARM (but contrary as you implied, never heard of it).

    I found another software, named ExaGear...
  24. Replies
    21
    Views
    21,553

    You tried this?...

    You tried this? http://killtube.org/showthread.php?1940-Kicking-bots



    BTW the vbulletin default search is totally useless, I just find this stuff with google ^^
  25. Thread: TestClients

    by serthy
    Replies
    21
    Views
    21,553

    Map change is done (in bot-mods without libcod)...

    Map change is done (in bot-mods without libcod) tis way:

    - kick all player, but let them /reconnect automatically after a few seconds (execClientCommand()-hack)
    - kill the server (removes the...
Results 1 to 25 of 121
Page 1 of 5 1 2 3 4