Advertisement
Guest User

Dome.sqf

a guest
Apr 7th, 2014
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. // Below, put the UID of player(s) where it says pasteUIDhere that you want to give access to the dome
  2. if ((getPlayerUID player) in ["96583046" , "158258118"]) exitWith {
  3. titleText ["Welcome home", "PLAIN DOWN", 3]; //or,\\ titleText [format ["Welcome, %1", name player], "PLAIN DOWN"]; // welcomes you with your name
  4. };
  5. // What happens if unauthorized players get into the dome
  6. titleText ["You are entering restricted area, leave.", "PLAIN DOWN", 3];
  7. sleep 5;
  8. titleText ["Are you blind? GET OUT", "PLAIN DOWN", 3];
  9. sleep 5;
  10. titleText ["Still not listening, huh?", "PLAIN DOWN", 3];
  11. sleep 5;
  12. titleText ["You have 5 seconds left", "PLAIN DOWN", 3];
  13. sleep 5;
  14. titleText ["Good night.", "PLAIN DOWN", 3];
  15. sleep 2;
  16. player setDamage 1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement