Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?php
  2. $message = $_GET [message];
  3. require_once("WebsenderAPI.php");
  4. $wsr = new WebsenderAPI("164.132.27.249","slsms902","8075");
  5.  
  6. if($message == null){
  7. echo "[SMS-SwordLords] USERNAME was not specified!";
  8. }else{
  9. if($wsr->connect()){
  10. $wsr->sendCommand("broadcast &b&l"."$message"." &6has purchased &b&lHero &6rank for 15 days! Thank you for your support!");
  11. $wsr->sendCommand("lp user "."$message"." parent addtemp hero 15d");
  12. echo "[SMS-SwordLords] Transaction COMPLETE!";
  13. $wsr->disconnect();
  14. }else
  15. echo "[SMS-SwordLords] Transaction FAILED!";
  16. $wsr->disconnect();
  17. }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement