any help would be greatly appreciated. thanks
--- Please enter the following information for support ---
War3ft Version: 2.3.2
Amxmodx Version: 1.76
Metamod Version: 1.76
amxx list:
amxx modules:
meta list:
how do i disable gloves of warmth on the map: knife_zone?
Moderator: Forum Moderator
- YamiKaitou
- Forum Moderator
- Posts: 1925
- Joined: Wed Feb 01, 2006 4:33 pm
- Contact:
- YamiKaitou
- Forum Moderator
- Posts: 1925
- Joined: Wed Feb 01, 2006 4:33 pm
- Contact:
- Krazy
- Forum Administrator
- Posts: 282
- Joined: Wed Jul 06, 2005 9:40 am
- Location: Dayton, Ohio
- Contact:
In 3.0 there is a .cfg file where you can put the maps in that you want to disable orc nades or gloves. In 2.3.2 you can edit the war3ft/other.inl and add the maps you want to disable orc nades and gloves on.
To do what you want - open war3ft/other.inl and change this:
to
then recompile the plugin
To do what you want - open war3ft/other.inl and change this:
Code: Select all
#if MOD ==0
new mapname[32]
get_mapname(mapname,31)
if (containi(mapname,"ka_")!=-1 || containi(mapname,"scoutzknivez")!=-1){
g_givePistol=false
if (iCvar[FT_NO_GLOVES_ON_KA])
g_giveHE=false
else
g_giveHE=true
Code: Select all
#if MOD ==0
new mapname[32]
get_mapname(mapname,31)
if (containi(mapname,"ka_")!=-1 || (containi(mapname,"knife_")!=-1 || containi(mapname,"scoutzknivez")!=-1){
g_givePistol=false
if (iCvar[FT_NO_GLOVES_ON_KA])
g_giveHE=false
else
g_giveHE=true
Website: www.djpsych.com

Need help anything to do with Warcraft 3 Mod, installing other plugins, setting up mySQL, installing PsychoStats, or anything else just PM/email me!

Need help anything to do with Warcraft 3 Mod, installing other plugins, setting up mySQL, installing PsychoStats, or anything else just PM/email me!