Search:

Page 1 of 27 1 2 3 4

Search: Search took 1.00 seconds.

  1. Replies
    5
    Views
    11,818

    Removed the wait 0.1 between the waittill and the...

    Removed the wait 0.1 between the waittill and the setorigin. That's always fucking up jump mods. People should never use that, and removing it has (mostly) no negative effects.
  2. Dont return false with getplayerbyid, return...

    Dont return false with getplayerbyid, return undefined instead and check for that.

    Dont getplayername or exists by id, just use the getplayerbyid function with proper checks.

    fixchatargs is...
  3. Replies
    6
    Views
    3,646

    If you're doing spinning rust (hdd, not ssd) with...

    If you're doing spinning rust (hdd, not ssd) with 4 disks, use zfs raid Z2 feature, gives you 2 parity disks, so any 2 disks can fail, contrary to raid10 with 4 disks, where 2 disks of the same raid1...
  4. Replies
    6
    Views
    3,646

    Please use software raid. For linux, try ZFS. For...

    Please use software raid. For linux, try ZFS. For windows, try storage spaces.

    HW raid cards are so proprietary that if they fail, you gotto find the same card again to save your data. With...
  5. Probablly to do with either g_floodprotect (set...

    Probablly to do with either g_floodprotect (set to zero), or (in cod2 at least) with the spamdelay set inside the quickmessages.gsc file. In cod2 it's set to 2 seconds, like so:



    }

    self...
  6. You're using args[1] == "say_team" which should...

    You're using args[1] == "say_team" which should be args[0] == "say_team"
  7. probably g_deadchat turned off, dead players...

    probably g_deadchat turned off, dead players won't show their message to alive players, nor will spectating players show their messages to alive players.
  8. Replies
    12
    Views
    4,212

    I've got no clue what roundcam is.

    I've got no clue what roundcam is.
  9. Replies
    4
    Views
    2,477

    1. set up initial alpha with .alpha 2. call...

    1. set up initial alpha with .alpha
    2. call fadeovertime(time_goes_here)
    3. set new, desired alpha that should be faded towards
    4. fadeovertime will do stuff in the background, as a separated...
  10. Replies
    4
    Views
    2,477

    Yes, use fadeovertime. hud.alpha = 0; hud...

    Yes, use fadeovertime.

    hud.alpha = 0;
    hud fadeOverTime(1);
    hud.alpha = 1;

    Done.
  11. Replies
    12
    Views
    4,212

    Shouldn't matter. Have you checked from a...

    Shouldn't matter. Have you checked from a spectator's point of view (hud element being on the spectatee aka player)?
  12. I don't get what you're trying to do. If you're...

    I don't get what you're trying to do. If you're trying to edit which menu file gets shown to players, just do it through script. If you're trying to modify it globally, then why are you using self?...
  13. Replies
    12
    Views
    4,212

    The correct flag would be .archived, instead of...

    The correct flag would be .archived, instead of .archive. Not sure about the default, but judging by your results it might be set to true by default (since you set a different variable)
  14. Replies
    8
    Views
    5,119

    cod4 has an option to set the "north" direction....

    cod4 has an option to set the "north" direction. Maybe that is at play here too?
  15. Replies
    12
    Views
    4,212

    the .archive flag is set to true/false on hud...

    the .archive flag is set to true/false on hud elements to instruct the engine to make them visible in the killcam if set to true. As a side-effect (maybe an intended effect?) it also makes it visible...
  16. Replies
    8
    Views
    5,119

    use getplayerangles() from a script (gsc) file....

    use getplayerangles() from a script (gsc) file. player.angles is kinda bugged and only returns a nonzero value for the [1] index.

    Also, in cod2 /viewpos returns your left/right angle as the final...
  17. Replies
    3
    Views
    1,460

    Why are you storing client hud elems in level...

    Why are you storing client hud elems in level variables?
  18. Replies
    8
    Views
    3,939

    I'd say load the cvar on server load (don't...

    I'd say load the cvar on server load (don't update it runtime), let some c-code extract the stuff, store it in the 4 bytes of netadr_t and compare that run-time (4 byte compare for every getstatus...
  19. Replies
    3
    Views
    1,980

    Just add a check there, or a callback upon firing...

    Just add a check there, or a callback upon firing a nade to disappear when the person that threw the nade goes spec.
  20. No need, the script would be server-side only.

    No need, the script would be server-side only.
  21. Would say you should script this, preferably...

    Would say you should script this, preferably through the map gsc
  22. fs_game it is. This means LEAVE MAIN THE FUCK...

    fs_game it is. This means LEAVE MAIN THE FUCK ALONE. (this goes for any modder ever thinking of touching main. Dont. You'll be arrested)
  23. Just run it through sandboxie? No clue exactly...

    Just run it through sandboxie? No clue exactly how, but it should mostly sandbox anything it does.
  24. Replies
    1
    Views
    8,340

    https://web.archive.org/web/20220105160706/https:/...

    https://web.archive.org/web/20220105160706/https://wiki.zeroy.com//index.php/Call_of_Duty_2:_d3dbsp
    https://archive.is/KAZtQ
  25. Replies
    39
    Views
    165,083

    Works fine for me on a fresh Debian 11 amd64...

    Works fine for me on a fresh Debian 11 amd64 install, substituting the libmysqlclient-dev:i386 with libmariadb-dev-compat:i386.

    Literally all commands until cod2 server got started:



    sudo...
Results 1 to 25 of 673
Page 1 of 27 1 2 3 4