Page 1 of 1

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

Posted: Fri Mar 12, 2010 2:06 pm
by whosyourdaddy
i dont under the second part of ur question

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

Posted: Fri Mar 12, 2010 2:47 pm
by whosyourdaddy
if u have gloves then ur nades arent orc anymore

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

Posted: Sat Mar 13, 2010 12:53 am
by whosyourdaddy
are you using the latest version? rc13

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

Posted: Sat Mar 13, 2010 6:56 pm
by whosyourdaddy
rc13 has alot of bug fixes, like your orc nade issue and scroll/bm respawn etc...

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

Posted: Sat Mar 13, 2010 9:50 pm
by whosyourdaddy
looks through the svn files and look at the changes and ull have to make the changes one by one yourself then

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

Posted: Sun Mar 14, 2010 10:48 am
by whosyourdaddy
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

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

Posted: Sun Mar 14, 2010 2:56 pm
by whosyourdaddy
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

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

Posted: Mon Mar 15, 2010 10:58 am
by whosyourdaddy
are you saving sqlite or mysql?

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

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

Posted: Tue Mar 16, 2010 10:39 am
by whosyourdaddy
just copy and paste the whole file

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

Posted: Thu Mar 18, 2010 7:57 pm
by whosyourdaddy
you save using mysql, ur gonna need to talk to ur server co about making a back up to it

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

Posted: Sat Mar 20, 2010 12:15 am
by whosyourdaddy
huh what files?

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

Posted: Sat Mar 20, 2010 1:15 pm
by whosyourdaddy
i dont understand what your trying to say

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

Posted: Sat Mar 20, 2010 5:38 pm
by whosyourdaddy
thats ok but cant u rephrase it one more time please

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

Posted: Sun Mar 21, 2010 1:35 pm
by whosyourdaddy
no i understand now. paste me ur race_orc.inl

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

Posted: Sun Mar 21, 2010 5:01 pm
by whosyourdaddy
zip the folder and upload it to the web

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

Posted: Tue Mar 23, 2010 4:09 pm
by whosyourdaddy
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

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

Posted: Thu Mar 25, 2010 1:23 am
by whosyourdaddy
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_*

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

Posted: Thu Mar 25, 2010 1:06 pm
by whosyourdaddy
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

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

Posted: Thu Mar 25, 2010 8:24 pm
by whosyourdaddy
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(){

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

Posted: Fri Mar 26, 2010 1:51 pm
by whosyourdaddy
i thought u were having issues with orc gernade not gloves

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

Posted: Fri Mar 26, 2010 10:16 pm
by whosyourdaddy
huh

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

Posted: Sat Mar 27, 2010 3:34 am
by whosyourdaddy
im confused

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

Posted: Sat Mar 27, 2010 2:05 pm
by whosyourdaddy
i dont understand you