Guest User

Untitled

a guest
Jun 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. program DraynorWillows;
  2. {$DEFINE SMART}
  3. {$i srl/srl.simba}
  4. {$i sps/sps.simba}
  5. procedure DeclarePlayers;
  6. begin
  7. HowManyPlayers := 1;
  8. NumberOfPlayers(HowManyPlayers);
  9. CurrentPlayer := 0;
  10.  
  11. with Players[0] do
  12. begin
  13. Name := '';
  14. Pass := '';
  15. Nick := ''; // 3-4 LOWERCASE letters from your username
  16. Active := True; // True = use this player
  17. Member := False;
  18. Pin := ''; // Leave blank if you don't have a bank pin
  19. end;
  20.  
  21. Var
  22. myPath:TPointArray;
  23. begin
  24. SetupSRL;
  25. SPS_Setup(RUNESCAPE_SURFACE, ['10_9']);
  26. myPath := [Point(4182, 3667), Point(4159, 3708)];
  27. SPS_WalkPath(myPath);
  28. end;
Add Comment
Please, Sign In to add comment