Advertisement
infiSTAR23

Change SpawnMenu of different Admin levels

Apr 27th, 2014
518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.33 KB | None | 0 0
  1. ctrl + F search in the AH.sqf for "admin_fillSpawnMenuFILL =" (without quotations)
  2. There you can see what the different levels can do. The SuperLevel can do all options so you could just copy paste line by line to other levels
  3.  
  4.     admin_fillSpawnMenuFILL =
  5.     {
  6.         _puid = getPlayerUID player;
  7.         if (_puid in PV_SuperLevel_List) then
  8.         {
  9.             adminadd = adminadd + ["   +Spawn Vehicle","Vehicles","0","0","1","0",[0,0.6,1,1]];
  10.             adminadd = adminadd + ["   +Spawn Vehicle HIVE","Vehicleshive","0","0","1","0",[0,0.6,1,1]];
  11.             adminadd = adminadd + ["   +Spawn Buildings","Buildings","0","0","1","0",[0,0.6,1,1]];
  12.             adminadd = adminadd + ["   +Spawn Weapons & Items","Weaponz","0","0","1","0",[0,0.6,1,1]];
  13.             adminadd = adminadd + ["   +Spawn Magazines","Magzz","0","0","1","0",[0,0.6,1,1]];
  14.             adminadd = adminadd + ["   +Spawn Weapons & Magazines","WeaponzMagzz","0","0","1","0",[0,0.6,1,1]];
  15.             adminadd = adminadd + ["   +Spawn Backpacks","BackPacksz","0","0","1","0",[0,0.6,1,1]];
  16.             adminadd = adminadd + ["   +Spawn Player Morph","Skinz","0","0","1","0",[0,0.6,1,1]];
  17.             adminadd = adminadd + ["============================================================","","0","1","0","0",[]];
  18.         };
  19.         if (_puid in PV_NormalLevel_List) then
  20.         {
  21.             if (!isNil 'infiAllowedVehiclesList') then {ALL_VEHS_TO_SEARCH = infiAllowedVehiclesList;};
  22.            
  23.             adminadd = adminadd + ["   +Spawn Vehicle","Vehicles","0","0","1","0",[0,0.6,1,1]];
  24.             adminadd = adminadd + ["   +Spawn Weapons & Items","Weaponz","0","0","1","0",[0,0.6,1,1]];
  25.             adminadd = adminadd + ["   +Spawn Magazines","Magzz","0","0","1","0",[0,0.6,1,1]];
  26.             adminadd = adminadd + ["   +Spawn Weapons & Magazines","WeaponzMagzz","0","0","1","0",[0,0.6,1,1]];
  27.             adminadd = adminadd + ["   +Spawn Backpacks","BackPacksz","0","0","1","0",[0,0.6,1,1]];
  28.             adminadd = adminadd + ["   +Spawn Player Morph","Skinz","0","0","1","0",[0,0.6,1,1]];
  29.             adminadd = adminadd + ["============================================================","","0","1","0","0",[]];
  30.         };
  31.         if (_puid in PV_LowLevel_List) then
  32.         {
  33.             if (!isNil 'infiAllowedVehiclesList') then {ALL_VEHS_TO_SEARCH = infiAllowedVehiclesList;};
  34.            
  35.             adminadd = adminadd + ["   +Spawn Player Morph","Skinz","0","0","1","0",[0,0.6,1,1]];
  36.             adminadd = adminadd + ["============================================================","","0","1","0","0",[]];
  37.         };
  38.     };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement