Additional Buff make me stoned

karazu

New member
Messages
1,115
Points
0
Code:
		// Food Buffs		//specialeffect2 EF_FOOD01; sc_start SC_STRFood, 360000, 10;		//specialeffect2 EF_FOOD03; sc_start SC_AGIFood, 360000, 10;		//specialeffect2 EF_FOOD02; sc_start SC_VITFood, 360000, 10;		//specialeffect2 EF_FOOD02; sc_start SC_INTFood, 360000, 10;		//specialeffect2 EF_FOOD04; sc_start SC_DEXFood, 360000, 10;​ 
 
I put them in my Healer but they are not working, It will just make my character stoned



Also: how about if I will make them +20 FOOD?
 
Last edited by a moderator:
this will work

and you can easy look in the const.txt for the correct syntax

Code:
        // Food Buffs		//specialeffect2 EF_FOOD01; sc_start SC_FOOD_STR, 360000, 10;		//specialeffect2 EF_FOOD03; sc_start SC_FOOD_AGI, 360000, 10;		//specialeffect2 EF_FOOD02; sc_start SC_FOOD_VIT, 360000, 10;		//specialeffect2 EF_FOOD02; sc_start SC_FOOD_INT, 360000, 10;		//specialeffect2 EF_FOOD04; sc_start SC_FOOD_DEX, 360000, 10;​ 
 
Last edited by a moderator:
Back
Top