Chemical protection buff problem

Petey Pablo

New member
Messages
224
Points
0
Emulator
Need help for full chemical protection buff I got like stone curse and cant moving this is the sample script. Thanks

Code:
prontera.gat,150,170,4	script	Full Chem	4_DOG01,{

	skilleffect 479,0; sc_start SC_FULLPROTECTION,360000,5;

}
 
Last edited by a moderator:
put "end;" below skilleffect

Code:
prontera.gat,150,170,4	script	Full Chem	4_DOG01,{

	skilleffect 479,0; sc_start SC_FULLPROTECTION,360000,5;
        end;

}
 
Last edited by a moderator:
Probably you would just use like this
sc_start  SC_PROTECTWEAPON,360000,5; ....

    SC_PROTECTSHIELD                
    SC_PROTECTARMOR              
    SC_PROTECTHELM
 
Back
Top