[Nitmod Server] Lua tips

If you have any problems, regarding to gameservers. You can create a topic. We will find out a solution.
Source Engine games, Quake Engine games, or any others. Request something, like scripts serverside. Or post your own made stuff.
Post Reply
User avatar
ETc|#.Jay.#
ETc| Member
Posts: 1775
Joined: 25 May 2008, 22:01
discord: ETc|₪.Jay.₪ #4322
Location: Germany
Contact:

[Nitmod Server] Lua tips

Post by ETc|#.Jay.# »

important for nitmod:


et.CS_PLAYERS = 689 #etpub etpro silent etc...
change this to
et.CS_PLAYERS = 64 #for nitmod only


Question:
I am working on a script, and I need to know what are the Weapon ID's in N!tmod ?

Answer:
Here is the complete Weapon ID's list:

Code: Select all

	0 		WP_NONE
	1 		WP_KNIFE
	2 		WP_LUGER
	3 		WP_MP40
	4 		WP_GRENADE_LAUNCHER
	5 		WP_PANZERFAUST
	6 		WP_FLAMETHROWER
	7 		WP_COLT
	8 		WP_THOMPSON
	9 		WP_GRENADE_PINEAPPLE
	10 		WP_STEN,
	11 		WP_MEDIC_SYRINGE
	12 		WP_AMMO
	13 		WP_ARTY
	14 		WP_SILENCER
	15 		WP_DYNAMITE
	16 		WP_SMOKETRAIL
	17 		VERYBIGEXPLOSION
	18 		WP_MEDKIT
	19 		WP_BINOCULARS
	20 		WP_PLIERS
	21 		WP_SMOKE_MARKER
	22 		WP_KAR98
	23 		WP_CARBINE
	24 		WP_GARAND
	25 		WP_LANDMINE
	26 		WP_SATCHEL
	27 		WP_SATCHEL_DET
	28 		WP_SMOKE_BOMB
	29 		WP_MOBILE_MG42
	30 		WP_K43
	31 		WP_FG42
	32 		WP_DUMMY_MG42
	33 		WP_MORTAR
	34 		WP_AKIMBO_COLT
	35 		WP_AKIMBO_LUGER
	36 		WP_GPG40
	37 		WP_M7
	38 		WP_SILENCED_COLT
	39 		WP_GARAND_SCOPE
	40 		WP_K43_SCOPE
	41 		WP_FG42SCOPE
	42 		WP_MORTAR_SET
	43 		WP_MEDIC_ADRENALINE
	44 		WP_AKIMBO_SILENCEDCOLT
	45 		WP_AKIMBO_SILENCEDLUGER
	46 		WP_MOBILE_MG42_SET
	47 		WP_POISON_SYRINGE
	48 		WP_BOMB
	49 		WP_TRIPMINE
	50 		WP_POISON_BOMB
	51 		WP_POISON_MINE
	52 		WP_NUM_WEAPONS

Image
Post Reply