Guest User

Untitled

a guest
Jul 5th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. program DeclarePlayers;
  2. {$DEFINE SMART}
  3. {$DEFINE SRL5}
  4. {$i SRL/SRL/skill/mining.simba}
  5.  
  6.  
  7. {=================================}
  8. { Gold Miner }
  9. { Version 0.1 }
  10. { Created by Sahib }
  11. {=================================}
  12.  
  13. procedure DeclarePlayers;
  14. begin
  15. HowManyPlayers := 1;
  16. NumberOfPlayers(HowManyPlayers);
  17. CurrentPlayer := 0;
  18.  
  19. Players[0].Name := ''; //Enter your username in between the '''s
  20. Players[0].Pass := ''; //Enter your password in between the '''s
  21. Players[0].Nick := ''; //Enter a nickname
  22. Players[0].Active := True; // Don't touch.
  23. Players[0].Pin := ''; //Whats your bank PIN?
  24. Players[0].BoxRewards := ['Xp', 'mote', 'ostume', 'oins', 'aphire', 'ssence'];
  25. // In case of a random event, which one of these rewards would you like? Put the most preferable one first.
  26. end;
  27.  
  28. const
  29. SRLStats_Username = ''; //SRL Stats username
  30. SRLStats_Password = ''; //SRL Stats password
  31. Sever = 69; //Which world would you like to log into?
  32. EXP =65; //Don't touch
  33. ORES_TO_MINE =500; //How many ores do you want it to mine?
  34. ORE_TYPE ='gold'; //Don't touch
  35. ORE_PRICE = 69; //How much are the ores worth?
  36. LampXpIn = 'Summoning'; //What skill do you want to use your lamp on?
  37.  
  38. var
  39. TotalLogs: Integer;
  40. TotalXP: Extended;
  41.  
  42.  
  43.  
  44. begin
  45.  
  46. Smart_Server := server;
  47. Smart_Members := False;
  48. Smart_Signed := True;
  49. Smart_SuperDetail := False;
  50.  
  51. ClearDebug;
  52. SetupSRL;
  53. DeclarePlayers;
  54. LoginPlayer;
  55. end.
  56.  
  57. // Credits:
Add Comment
Please, Sign In to add comment