[HELP]He's Orc disabled in maps fy / ka / aim
Moderator: Forum Moderator
-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
Re: [HELP]He's Orc disabled in maps fy / ka / aim
rc13 has alot of bug fixes, like your orc nade issue and scroll/bm respawn etc...

-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
Re: [HELP]He's Orc disabled in maps fy / ka / aim
looks through the svn files and look at the changes and ull have to make the changes one by one yourself then

-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
Re: [HELP]He's Orc disabled in maps fy / ka / aim
everything changed from your version to the current version was done for a reason... here is a link to the svn files http://svn.alliedmods.net/viewvc.cgi/tr ... ot=wc3mods the svn files are files that show what lines where changed in the code from one update to another, find your version of the code in the svn files and start looking at files from one update to another changing what you want

-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
Re: [HELP]He's Orc disabled in maps fy / ka / aim
when a source file is changed, yama or geesu show what part of the source file was changed in the svn. you have to find the part where ur source file was changed last. from there start looking at all the changed source files and change ur source files that doesnt have to do with races abilities

-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
Re: [HELP]He's Orc disabled in maps fy / ka / aim
are you saving sqlite or mysql?
to find out check your war3ft.cfg in ur config/war3 folder
to find out check your war3ft.cfg in ur config/war3 folder

-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
Re: [HELP]He's Orc disabled in maps fy / ka / aim
you save using mysql, ur gonna need to talk to ur server co about making a back up to it

-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
Re: [HELP]He's Orc disabled in maps fy / ka / aim
thats ok but cant u rephrase it one more time please

-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
Re: [HELP]He's Orc disabled in maps fy / ka / aim
try this... open events.inl and find
and change it to
let me know if it works
Code: Select all
if( ( (p_data[index][P_ITEM2]==ITEM_GLOVES && iCvar[FT_GLOVE_ORC_DAMAGE]) || (p_data[index][P_ITEM2]!=ITEM_GLOVES) ) && is_user_alive(index) ) {
Code: Select all
if( ( (p_data[index][P_ITEM2]==ITEM_GLOVES && iCvar[FT_GLOVE_ORC_DAMAGE]) || (p_data[index][P_ITEM]==ITEM_GLOVES && iCvar[FT_GLOVE_ORC_DAMAGE]) || (p_data[index][P_ITEM2]!=ITEM_GLOVES && p_data[index][P_ITEM]!=ITEM_GLOVES) ) && is_user_alive(index) ) {

-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
Re: [HELP]He's Orc disabled in maps fy / ka / aim
in ur config/war3ft/disabled folder you should have a file named orc_skill or skill_orc just add the maps in there with a * after it for example
fy_*
ka_*
aim_*
awp_*
pubmaster_*
fy_*
ka_*
aim_*
awp_*
pubmaster_*

-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
Re: [HELP]He's Orc disabled in maps fy / ka / aim
in events.inl change
to
in your config/war3ft make a folder named disabled. in that folder make a file named skill_orc_nade.cfg. in that file you will paste each map on its own line for which you dont want orc to work for
Code: Select all
if( ( (p_data[index][P_ITEM2]==ITEM_GLOVES && iCvar[FT_GLOVE_ORC_DAMAGE]) || (p_data[index][P_ITEM]==ITEM_GLOVES && iCvar[FT_GLOVE_ORC_DAMAGE]) || (p_data[index][P_ITEM2]!=ITEM_GLOVES && p_data[index][P_ITEM]!=ITEM_GLOVES) ) && is_user_alive(index) ) {
Code: Select all
if( ( (p_data[index][P_ITEM2]==ITEM_GLOVES && iCvar[FT_GLOVE_ORC_DAMAGE]) || (p_data[index][P_ITEM]==ITEM_GLOVES && iCvar[FT_GLOVE_ORC_DAMAGE]) || (p_data[index][P_ITEM2]!=ITEM_GLOVES && p_data[index][P_ITEM]!=ITEM_GLOVES) ) && is_user_alive(index) && !g_bOrcNadesDisabled ) {

-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
Re: [HELP]He's Orc disabled in maps fy / ka / aim
in war3ft.inl change
to
Code: Select all
#else
g_spritesEnabled = false
#endif
}
public WC3_Init(){
Code: Select all
#else
g_spritesEnabled = false
#endif
WC3_Init();
}
public WC3_Init(){

-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
Re: [HELP]He's Orc disabled in maps fy / ka / aim
i thought u were having issues with orc gernade not gloves

-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm
-
- Spell Breaker
- Posts: 398
- Joined: Sun Apr 27, 2008 10:11 pm