Would you like to remove this npc to mount the item "Rein"

Tutti

New member
Messages
92
Points
0
Github
Tutti
Could someone give me a hand doing this npc after the player talk to him, it checks whether the player is to mount possessed with the item "Rein" and remove the mount of player

prontera,150,150,5 script Montaria 120,{

mes "Olá, gostaria de retirar a montaria ??";
switch(select("Sim:Não")){
case 1:
if(checkmount()){
setmount();
next;
mes "Prontinho!!";
close;
end;
}
next;
mes "Você não está montando!!";
close;
end;

case 2:
mes "Ok!";
close;
end;
}
}
 
if you want to check if player is using cash mount use hascashmount() command

 
Back
Top