[HELP]He's Orc disabled in maps fy / ka / aim

Read log files for errors! If this fails, come here for help

Moderator: Forum Moderator

Post Reply
whosyourdaddy
Spell Breaker
Posts: 398
Joined: Sun Apr 27, 2008 10:11 pm

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Fri Mar 12, 2010 2:06 pm

i dont under the second part of ur question
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Fri Mar 12, 2010 2:47 pm

if u have gloves then ur nades arent orc anymore
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Sat Mar 13, 2010 12:53 am

are you using the latest version? rc13
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Sat Mar 13, 2010 6:56 pm

rc13 has alot of bug fixes, like your orc nade issue and scroll/bm respawn etc...
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Sat Mar 13, 2010 9:50 pm

looks through the svn files and look at the changes and ull have to make the changes one by one yourself then
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Sun Mar 14, 2010 10:48 am

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
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Sun Mar 14, 2010 2:56 pm

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
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Mon Mar 15, 2010 10:58 am

are you saving sqlite or mysql?

to find out check your war3ft.cfg in ur config/war3 folder
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Tue Mar 16, 2010 10:39 am

just copy and paste the whole file
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Thu Mar 18, 2010 7:57 pm

you save using mysql, ur gonna need to talk to ur server co about making a back up to it
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Sat Mar 20, 2010 12:15 am

huh what files?
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Sat Mar 20, 2010 1:15 pm

i dont understand what your trying to say
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Sat Mar 20, 2010 5:38 pm

thats ok but cant u rephrase it one more time please
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Sun Mar 21, 2010 1:35 pm

no i understand now. paste me ur race_orc.inl
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Sun Mar 21, 2010 5:01 pm

zip the folder and upload it to the web
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Tue Mar 23, 2010 4:09 pm

try this... open events.inl and find

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) ) { 

and change it to

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) ) { 
let me know if it works
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Thu Mar 25, 2010 1:23 am

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_*
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Thu Mar 25, 2010 1:06 pm

in events.inl change

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) ) { 
to

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 ) { 
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
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Thu Mar 25, 2010 8:24 pm

in war3ft.inl change

Code: Select all

#else
	g_spritesEnabled = false
#endif

}

public WC3_Init(){
to

Code: Select all

#else
	g_spritesEnabled = false
#endif

     WC3_Init();
}

public WC3_Init(){
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Fri Mar 26, 2010 1:51 pm

i thought u were having issues with orc gernade not gloves
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Fri Mar 26, 2010 10:16 pm

huh
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Sat Mar 27, 2010 3:34 am

im confused
Image

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

Re: [HELP]He's Orc disabled in maps fy / ka / aim

Post by whosyourdaddy » Sat Mar 27, 2010 2:05 pm

i dont understand you
Image

Post Reply