Advertisement
akbare

Rate item exchange

Jan 27th, 2024
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. //======================================
  2. // _____ _ _ _
  3. // / ____| | | (_)
  4. // | | __| | __ _ __| |_ _ _ ___
  5. // | | |_ | |/ _` |/ _` | | | | / __|
  6. // | |__| | | (_| | (_| | | |_| \__ \
  7. // \_____|_|\__,_|\__,_|_|\__,_|___/
  8. //
  9. //===== rAthena Script =====================
  10. //= Exchange Poring Card for Faber Card
  11. //===== Créditos: =========================
  12. //= Gladius
  13. //===== NPC Version: =======================
  14. //== 1.0
  15. //======================================
  16.  
  17. prontera,153,168,5 script Item Changer 61,{
  18.  
  19. set .ns$,"^00B2EE[Item Changer]^000000";
  20. set .@poring, 4001;
  21. set .@chance, 30;
  22.  
  23. mes .ns$;
  24. mes "Do you want to exchange a poring card for a faber card? Has 25% success.";
  25. switch(select("^3CB371[»]^000000 Exchange Poring Card","^ff0000[»]^000000 No")){
  26.  
  27. case 1:
  28. next;
  29. if(countitem(.@poring) < 1){
  30. mes .ns$;
  31. mes "You don't have "+getitemname(.@poring)+" for exchange.";
  32. close;
  33. }
  34.  
  35. delitem .@poring,1;
  36.  
  37. if(.@chance >= rand(100)){
  38. getitem 4002,1;
  39. mes .ns$;
  40. mes "The exchange conversion was a success!";
  41. close;
  42. }
  43.  
  44. mes .ns$;
  45. mes "I'm sorry but I failed to exchange conversion.";
  46. close;
  47.  
  48. case 2:
  49. close;
  50. }
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement