home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 56 / CDPowerplay56Disc2.iso / demos / blade / data1.cab / Program_Executable_Files / Lib / Netval.py < prev    next >
Encoding:
Text File  |  2000-10-27  |  1.1 KB  |  35 lines

  1. # 0..511  Reserved to the game mode (arena, combat, deadmatch, capture the flag, etc.)
  2. NET_GAME_MODE = 0 
  3.  
  4. # 512..1023  Reserved to the engine based scripts (lava deaths, and misc FX)
  5. NET_ENGINE = 512
  6.  
  7. # 1024...32000 Used to send map specifics values (as changes in the environment, or some visual FX)
  8. NET_USER = 1024
  9.  
  10. # Please, put your values here....
  11. ################################## NET_GAME_MODE values ##################################
  12.  
  13. #-------------------------
  14. NET_GAME_FRAGS        = NET_GAME_MODE+0 
  15. NET_GAME_STATUS        = NET_GAME_MODE+1
  16. NET_GAME_KOMBATERS    = NET_GAME_MODE+2
  17.  
  18. #                     . . .
  19.  
  20. NET_GAME_IN_COMBAT    = NET_GAME_MODE+201
  21. NET_GAME_CHAT_STRING    = NET_GAME_MODE+202
  22.  
  23. # Please, put your values here....
  24. ################################## NET_ENGINE values ##################################
  25.  
  26. NET_GAME_FADE_DUE2BIGFALL = NET_ENGINE + 0
  27. NET_GAME_THROW_WEAPON     = NET_ENGINE + 1
  28. NET_GAME_START_TRAPS      = NET_ENGINE + 2
  29.  
  30.  
  31. ################################## NET_USER values ##################################
  32.  
  33. # arena 1 (volcano deathmatch)
  34.  
  35. NET_GAME_LAVAPOSITION    = NET_USER + 0