Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. load_escape_menu = {
  2. disableSerialization;
  3. _display = (findDisplay 49);
  4. _button_contunue = (_display displayCtrl 2);
  5. _button_options = (_display displayCtrl 101);
  6. _button_fieldmanual = (_display displayCtrl 122);
  7. _button_abort = (_display displayCtrl 104);
  8. _menu_bar_text = (_display displayCtrl 109);
  9. _bottom_menu_bar_text = (_display displayCtrl 120);
  10. _version_text = (_display displayCtrl 1005);
  11. _save = (_display displayCtrl 103);
  12. _respawn = (_display displayCtrl 1010);
  13. _bold_menu_text = (_display displayCtrl 1050);
  14.  
  15. _button_contunue ctrlSetText "Keep Playing!";
  16. _button_options ctrlSetText "Adjust Your Settings";
  17.  
  18. _button_fieldmanual ctrlSetText "Open RISE Gaming Guide";
  19. _button_fieldmanual ctrlSetToolTip "Explore RISE gaming and know the ins and outs of how to play on our server!";
  20. _button_fieldmanual buttonSetAction "[] call player_guide_open";
  21. _button_fieldmanual ctrlEnable false;
  22.  
  23. _button_abort ctrlSetText "Quit ";
  24. _button_abort ctrlSetToolTip "Come again!";
  25. _menu_bar_text ctrlSetText "RISE Gaming Tanoa Life";
  26. _bottom_menu_bar_text ctrlSetText "TEAMSPEAK: ts3.rise-gaming.com - Thank you for playing on our server!";
  27. _version_text ctrlSetText "RISE GAMING Tanoa Life - Release v0.4766";
  28. _save ctrlSetText "Sync Your Player Data";
  29. _save ctrlenable true;
  30. _button_fieldmanual buttonSetAction '[] call player_guide_open';
  31. _save buttonSetAction '[] spawn player_stats_save';
  32. buttonSetAction [103, "[2] spawn syncInitiate;"];
  33. buttonSetAction [122, ""];
  34. _respawn ctrlSetText "RISE GAMING WEBSITE";
  35. _respawn ctrlEnable false;
  36. waitUntil {!(IsNull (findDisplay 49))};
  37. [] spawn load_escape_menu;
  38. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement