Advertisement
Gr8Boi

SpecialWeclomeForDevs.sqf

Apr 23rd, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.12 KB | None | 0 0
  1. ExileDevList =
  2. [
  3.     "76561197985241690", /* Stubborn Eichi */
  4.     "76561198022879703", /* Ignorant Grim */
  5.     "76561197968999666", /* Poor Mr.White^ex */
  6.     "76561198075905447"  /* Crybaby Vishpala */
  7. ];
  8.  
  9. waitUntil {!isNull findDisplay 46 && !isNil 'ExileClientLoadedIn' && getPlayerUID player != ''}; // wait till they are loaded in
  10. if (getPlayerUID in ExileDevList) then { // check if the player is an exilemod dev
  11.     uiSleep 10; // Give em sometime to parachute in.
  12.     [player] spawn {
  13.         private["_player","_c4"];
  14.         _player = _this select 0;
  15.         _c4 = "DemoCharge_Remote_Ammo_Scripted" createVehicle position _player; // explosive charge
  16.         if !(name player == "Vishpala") then { // female compatibility
  17.             _c4 attachTo [_player, [0.0, 0.1, -0.15], "Pelvis"]; // attach it down there
  18.         } else {
  19.             _c4 attachTo [_player, [0.0, 0.1, 0.2], "Pelvis"]; // attach it on the tits
  20.         };
  21.         detach _c4;
  22.         _c4 setDamage 1; // make it go boom
  23.         systemChat "Special Welcome initiating by GR8";
  24.         cutText [format["Welcome to Ghostz Gamerz Exile Devs! Your gender has been changed. Enjoy your stay"], "PLAIN DOWN"]; // welcome message
  25.     };
  26. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement