
Originally Posted by
Elmfuzzy
How do i use the vehicle spawn script?
Add me on skype guys "paincarrier".
---------- Post added at 10:16 AM ---------- Previous post was at 10:12 AM ----------

Originally Posted by
psx78
The reason some people are getting kicked is because the script uses the function createVehicle which is detected in remoteexec.log. This means that any updated server will probably auto-kick for it. This log can also be used to report you to BE for a global ban.
If you want to make this safer, replace the command createVehicle with createVehiclelocal. This will make the box only visible on your screen (aka other players can not see it), but it will also prevent it from being detected by the server. You can always loot stuff from the box and put it on the ground, in a tent, or in a vehicle for your friends afterwards.
tl;dr:
replace:
Code:
_magicbox = createVehicle [_className, _mypos, [], 0, "CAN_COLLIDE"];
with:
Code:
_magicbox = createVehiclelocal [_className, _mypos, [], 0, "CAN_COLLIDE"];
This was originally posted by mixerz. Try this maybe helps ??