Jump to content

johnw7392

Member
  • Content Count

    4
  • Joined

  • Last visited

  • Medals

Community Reputation

10 Good

About johnw7392

  • Rank
    Rookie
  1. johnw7392

    Prowler Template

    I am wanting to make a custom skin for the new Prowler from the Apex Expansion but cannot find a template or open the file to try and get a template. Does anyone know of a template for this vehicle?
  2. johnw7392

    Whitelisted Zone

    I must be doing this wrong some how and can't figure it out, nothing I try works. I took the code that Jshock provided and saved it as "towWhitelist.sqf" in my scripts folder. Then I added [] execVM "scripts\towWhitelist.sqf" to my init.sqf. From there I created an area in my mission and named it "towZone" this being the area I only want whitelisted players able to enter. Then I placed down a helipad while testing named "zoneTP" this being the place non-whitelisted players get tp'd to. I then try to test the mission in an MP environment but get an error message as soon as I finish loading. Can anybody help solve this issue? I will provide links to images of the error. 1. Original Code Provided (edited to work with my markers) private _myWhiteList = ["id1","id2","id3"]; while {true} do { { if ((!getPlayerUID _x in _myWhiteList) && _x inArea "towZone") then { _x setPos getMarkerPos "zoneTP";// or getPos "zoneB", depending on what the zones are }; } count allPlayers; sleep 3; }; 2. Link to image of Error Message http://prnt.sc/cjp7vj 3. Link to 2d image of "Restricted" area marker http://prnt.sc/cjp82f 4. Link to 3d image of "Restricted" area marker http://prnt.sc/cjp7ms
  3. Hello All, I am new to the forums here and have a quick question for all you the genius scripters here. In my mission, I would like to have a specific zone on the map to be a "whitelisted" zone so if you enter the zone and are not on the whitelist the you get teleport out of the zone. I am trying to find other topics about this but to no avail. I also attached a pic to help describe what i'm trying to achieve, if a player walks into zone "A" then a UID Whitelist is checked for their UID, if they are not on the whitelist the they will be teleported back to zone "B". I hope this helps and hope someone can help me solve this issue.
  4. johnw7392

    Zeus Abilites

    I am trying make it so a certain player can become Zeus but only have the ability to create way points or objectives for players on a multiplayer server. I'm trying to make it so the Zeus player can select a multiplayer unit and give them a location to go to that the multiplayer unit will be able to see in-game. Any suggestions?
×