warcraft3FT.sma and .inl files for 2.2.9
Moderator: Forum Moderator
- Krazy
- Forum Administrator
- Posts: 282
- Joined: Wed Jul 06, 2005 9:40 am
- Location: Dayton, Ohio
- Contact:
warcraft3FT.sma and .inl files for 2.2.9
Geesu could you please put the updated warcraft3FT.sma and .inl files for 2.2.9 version. Because i have to change the #define ADMIN_LEVEL_WC3 ADMIN_LEVEL_A to #define ADMIN_LEVEL_WC3 ADMIN_LEVEL_H and when i compile the .sma and then upload the .amxx file that was compiled it doesnt run warcraft 3 and says error on that plugin. But the .amxx file you already compiled works.
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!
- Krazy
- Forum Administrator
- Posts: 282
- Joined: Wed Jul 06, 2005 9:40 am
- Location: Dayton, Ohio
- Contact:
Did you do it for the 2.2.9 version and recompile it and try it? I did it with the 2.2.7 version and it worked fine. Never tried the 2.2.8 version because the bug reports people were saying scared me.GUNN3R17 wrote:u change it in 1 other place to...i do the same thing and it works fine everytime
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!
It compiles fine for me...d/l a fresh copy with the server files and compiler and do it
these are what need to be changed
what he is requesting is you change the "A" to a "H" so that givexp ability is given on its own and not combined with other more common abilitiesGeesu wrote:The updated files are in there... I don't understand what you're asking
these are what need to be changed
Code: Select all
#define ADMIN_LEVEL_WC3 ADMIN_LEVEL_A // set the admin level required for giving xp and accessing the admin menu
Code: Select all
if (!(get_user_flags(id)&ADMIN_LEVEL_A)) {
if(id != 0){
client_print(id,print_console,"%L",id,"YOU_HAVE_NO_ACCESS", g_MODclient)
return PLUGIN_HANDLED
- *ZhG*RasterMan
- Militia
- Posts: 66
- Joined: Fri Sep 23, 2005 7:58 am
- Location: Luton, UK
- Contact:
- Krazy
- Forum Administrator
- Posts: 282
- Joined: Wed Jul 06, 2005 9:40 am
- Location: Dayton, Ohio
- Contact:
I figured out what i was doing wrong.
When i downloaded the cs/cz version i always assume you set the mod to 0 and this time you didnt.
Currently in cs/cz package .sma file:
Should be:
When i downloaded the cs/cz version i always assume you set the mod to 0 and this time you didnt.
Currently in cs/cz package .sma file:
Code: Select all
// Compiling Options
#define MOD 1 // 0 = cstrike or czero, 1 = dod
Code: Select all
// Compiling Options
#define MOD 0 // 0 = cstrike or czero, 1 = dod
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!
- Krazy
- Forum Administrator
- Posts: 282
- Joined: Wed Jul 06, 2005 9:40 am
- Location: Dayton, Ohio
- Contact:
I will everytime time now. I wasted hours of time over one number 

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!