FCP NPC Script

Bringer

New member
Messages
148
Points
0
Emulator
rAthena
once i FCP myself  getting stone curse not FCP anyone?

Code:
Askydun,82,108,5	script	Hunyango	450,{    mes "[Hunyango]";    mes "Hey I can give you Full Chemical Protection for "+.amount+" "+getitemname(7139)+"";    mes "So do you want Full Chemical Protection?";    next;    if(select("Yes:No") == 2) close;    if(countitem(.item) < .amount) {        mes .n$;        mes "Sorry you don't have enough glistening coat";    }    mes "[Chemical protector]";    mes "Thank you, you will be chemically protected now";    close2;    delitem .item,.amount;    skilleffect 479,0;    sc_start SC_CP_ARMOR,600000,5;     sc_start SC_CP_WEAPON,600000,5;    sc_start SC_CP_SHIELD,600000,5;         sc_start SC_CP_HELM,600000,5;     end;OnInit:        set .item,7139; //Item you want to use    set .amount,1; //The amount of items you want    end;}Askydun	mapflag	nowarpAskydun	mapflag	noteleportAskydun	mapflag	nomemoAskydun	mapflag	nogo Askydun	mapflag	nodropAskydun	mapflag	noicewallAskydun	mapflag	nobranch
 
Back
Top