Advertisement
Apuu

NPC Cirurgião

Aug 1st, 2016
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. //-----------------------------------------------//
  2. //------------ NPC Criado por Apuu --------------//
  3. //-- Faça bom proveito, não retire os creditos --//
  4. //---- Cirurgião 1.1 Pré-Renovação/Renovação ----//
  5. //------------- Versão simplificada -------------//
  6. //-----------------------------------------------//
  7. prontera,153,180,4 script Cirurgião 1_M_JOBTESTER,{
  8.  
  9. set .@zeny1,350000; //Preço a cobrar pela troca 0 = Nada
  10.  
  11. mes "[Cirurgião]";
  12. mes "Olá "+strcharinfo(0)+"!";
  13. mes "Para troca de sexo irei precisar de,";
  14. mes ""+(.@zeny1)+"zenys";
  15. next;
  16. if (select ("Mudar de Sexo:Não quero...") == 2){
  17. mes "Tudo bem então...";
  18. close;
  19. }
  20. if (Zeny < .@zeny1){
  21. mes "[Cirurgião]";
  22. mes "Você não tem Zeny suficiente, desculpe.";
  23. close;
  24. }
  25. set Zeny,Zeny-.@zeny1;
  26. changesex;
  27. end;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement