Advertisement
Guest User

Donation credits to cash points

a guest
Apr 8th, 2017
817
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. prontera,144,171,6 script Donation Manager 89,{
  2.  
  3. mes "[Jimmy John]";
  4. mes "Would you like to convert your Donation Credit to cash point?";
  5. mes "Exchange Rate:";
  6. mes "^0000FF1^000000 Donation Credit = ^00FF001^000000 Cash Point";
  7. next;
  8. set @dCreds,query_sql("SELECT `balance` FROM cp_credits WHERE `account_id` = "+getcharid(3)+";",.@dCreds);
  9. mes "Please select the service you want:";
  10. next;
  11. menu "^FF0000Exchange",dpExc,"^0000FFCheck Points/Credits",checkPoints,"^00FF00Quit",LeEnd;
  12.  
  13. dpExc:
  14. mes "Available Cash Point to Exchange from Donation Credit : ^0000FF" + .@dCreds + "^000000";
  15. next;
  16. mes "How many ^FF0000 Cash Point ^000000 do you want?";
  17. input @ExchangeECd;
  18. if (.@dCreds < @ExchangeECd) goto ENeedDcredits;
  19. mes "That will be ^0000FF" + @ExchangeECd + "^000000 Donation Credits!";
  20. menu "Yes, I am sure.",LEyesd,"I will decide later...^000000",LEno;
  21. LEyesd:
  22. set .@dCBal,.@dCreds-@ExchangeECd;
  23. query_sql("UPDATE `cp_credits` SET `balance` = "+.@dCBal+" WHERE account_id = "+getcharid(3)+";");
  24. set #CASHPOINTS,#CASHPOINTS+@ExchangeECd;
  25. next;
  26. goto Edis2;
  27. close;
  28. LEno:
  29. mes "Thanks you ^0000FF" + strcharinfo(0) + "^000000!";
  30. mes "And done come again!";
  31. close;
  32.  
  33. Edis2:
  34. mes "Your Donation Credit = ^0000FF" + .@dCBal + "^000000!";
  35. mes "Your Cash Point = ^0000FF" + #CASHPOINTS + "^000000! ";
  36. close;
  37.  
  38. ENeedDcredits:
  39. mes "Sorry, you don't have enough Donation Credits.";
  40. close;
  41.  
  42. checkPoints:
  43. mes "Your Donation Credit = ^0000FF" + .@dCreds + "^000000!";
  44. mes "Your Cash Point = ^0000FF" + #CASHPOINTS + "^000000! ";
  45. close;
  46.  
  47. LeEnd:
  48. close;
  49.  
  50.  
  51. OnInit:
  52. waitingroom "Redeem Donation",0;
  53. end;
  54.  
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement