Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.89 KB | None | 0 0
  1. sleep 1;
  2. systemChat "Thanks for using AUX Mod - By 501st R&D";
  3. sleep 1;
  4. systemChat "Visit us: https://501stlegion-a3.com/";
  5. sleep 1;
  6.  
  7. waitUntil {!isNull player};
  8. waitUntil {(getPlayerUID player) != ""};
  9. private ["_ban_list"];
  10. _ban_list = [
  11. "76561198950803945",
  12. "76561198066917540",
  13. "76561198018755447"
  14. ];
  15. if ((getPlayerUID player) in _ban_list) then {
  16.     while {true} do {
  17.         titleText ["", "BLACK OUT"];
  18.         disableUserInput true;
  19.         hintc "***ATTENTION***\n\nYou are not allowed to play with the AUX mod! Learn to fix your own garbage!.\n\nREASON: You are trash!";
  20.         systemChat "***ATTENTION***\n\nYou are not allowed to play with the AUX mod! Learn to fix your own garbage!\n\nREASON: You are trash!";
  21.         endMission "Banned";
  22.         "end1" call BIS_fnc_endMission;
  23.         endMission "end1";
  24.         endMission "end2";
  25.         endmission "end3";
  26.     };
  27. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement