Search:

Type: Posts; User: IzNoGoD

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds.

  1. cod2 only does extended ascii, in which the...

    cod2 only does extended ascii, in which the extended part is different based on localisation (english will show â, russian version will show [some russian character]).

    You only get 256 characters...
  2. Replies
    5
    Views
    11,799

    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.
  3. deleted

    deleted
  4. 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...
  5. Replies
    6
    Views
    3,519

    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...
  6. Replies
    6
    Views
    3,519

    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...
  7. 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...
  8. You're using args[1] == "say_team" which should...

    You're using args[1] == "say_team" which should be args[0] == "say_team"
  9. 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.
  10. I can make you download stuff even if you have...

    I can make you download stuff even if you have download disabled. You can push cvars to a client onconnect, before downloading starts.
  11. Through punkbuster you can do this without any...

    Through punkbuster you can do this without any download.

    Without punkbuster you need a small menu file to do this.

    Some protection could be achieved by changing the cvar name in your .exe file....
  12. Replies
    12
    Views
    4,168

    I've got no clue what roundcam is.

    I've got no clue what roundcam is.
  13. Replies
    4
    Views
    2,454

    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...
  14. Replies
    4
    Views
    2,454

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

    Yes, use fadeovertime.

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

    Done.
  15. Replies
    12
    Views
    4,168

    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)?
  16. 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?...
  17. Replies
    12
    Views
    4,168

    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)
  18. Replies
    8
    Views
    5,089

    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?
  19. Replies
    12
    Views
    4,168

    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...
  20. Replies
    8
    Views
    5,089

    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...
  21. Replies
    3
    Views
    1,450

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

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

    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...
  23. Replies
    64
    Views
    117,567

    In later libcod versions (basically anything...

    In later libcod versions (basically anything that's been out there for 5 years or so) you can kick bots, so, implement that instead. (kick bots on map end, load new map, load new bots)
  24. Replies
    3
    Views
    1,962

    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.
  25. Thread: fs_game (mods)

    by IzNoGoD
    Replies
    3
    Views
    3,443

    It means you must specify your fs_game in your...

    It means you must specify your fs_game in your startup line instead of trying to set it later.

    Also, your quicmessage menu seems to be borked.
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4