Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. program ReflectionScript;
  2. {$DEFINE SMART}
  3. {$i SRL/SRL.scar}
  4. {$i Reflection/Reflection.simba}
  5.  
  6.  
  7.  
  8. (*=========== Setup your players! ===========*)
  9. procedure DeclarePlayers;
  10. begin
  11. HowManyPlayers := 1;
  12. CurrentPlayer := 0;
  13. NumberOfPlayers(HowManyPlayers);
  14.  
  15. with Players[0] do
  16. begin
  17. Name := '';
  18. Pass := '';
  19. Nick := '';
  20. Member := True;
  21. Active := True;
  22. end;
  23. end;
  24. (*===========================================*)
  25.  
  26. procedure Setup;
  27. begin
  28. Smart_Server := 35
  29. Smart_Signed := True;
  30. Smart_SuperDetail := False;
  31.  
  32. SetupSRL;
  33. DeclarePlayers;
  34. Writeln('Ready');
  35. end;
  36.  
  37. var
  38. Tile: TTile;
  39.  
  40.  
  41. begin
  42. Setup;
  43.  
  44. Tile := R_GetMyPos;
  45. R_GetObjectAt(Point(Tile.X, Tile.Y+1), OBJ_INTERACTABLE);
  46. R_GetObjectAt(Point(Tile.X, Tile.Y+2), OBJ_INTERACTABLE);
  47. R_GetObjectAt(Point(Tile.X, Tile.Y+3), OBJ_INTERACTABLE);
  48. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement