-
Content count
41 -
Donations
0.00 EUR -
Joined
-
Last visited
Community Reputation
3 NeutralAbout WormFood
-
Rank
Bambi
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Client RPT 16:59:42 Error in expression < publicVariableServer "do_CreateBike"; uiSleep 4; ["SuccessTitleAndText", ["Bik> 16:59:42 Error position: <uiSleep 4; ["SuccessTitleAndText", ["Bik> 16:59:42 Error Generic error in expression 16:59:42 File mpmissions\__CUR_MP.Tanoa\addons\deployBike\deployBike.sqf, line 14 deployBike.sqf // 2016 (c) 0x2AFF (exceptionptr) // https://github.com/0x2aff/XM8CustomDeployBike if !((vehicle player) isEqualTo player) exitWith {}; if ("Exile_Item_DuctTape" in (magazines player)) then { player playMove "AinvPknlMstpSnonWnonDr_medic3"; player removeItem "Exile_Item_DuctTape"; _spawnPos = player modelToWorld [0,3,0]; do_CreateBike = [player, _spawnPos, _spawnDir]; publicVariableServer "do_CreateBike"; uiSleep 4; ["SuccessTitleAndText", ["Bike deployed!", "Your Duct Tape has been removed."]] call ExileClient_gui_toaster_addTemplateToast; } else { ["ErrorTitleAndText", ["Can't deploy Bike", "You don't have any Duct Tape."]] call ExileClient_gui_toaster_addTemplateToast; };
-
In my init.sqf i have the following... // Deploy/Scrap Bike Functions #include "addons\deployBike\createBike.sqf"; fnc_bike_deploy = compileFinal preprocessFileLineNumbers "addons\deployBike\deployBike.sqf"; fnc_bike_scrap = compileFinal preprocessFileLineNumbers "addons\deployBike\scrapBike.sqf"; And my creatBike.sqf is as follows.... // 2016 (c) 0x2AFF (exceptionptr) // https://github.com/0x2aff/XM8CustomDeployBike if (isServer) then { "do_CreateBike" addPublicVariableEventHandler { private ["_parameters","_position","_vehicleArray","_rVehIndex","_vehicle","_spawnDir","_veh"]; _parameters = _this select 1; _position = _parameters select 1; _spawnDir = (_parameters select 2) - 90; //not sure what the point is of turning it sideways is, take out - 90 if you don't want it _vehicleArray = ["Exile_Bike_Oldbike", "Exile_Bike_MountainBike"]; _rVehIndex = floor (random (count _vehicleArray)); _vehicle = _vehicleArray select _rVehIndex; _veh = createVehicle[_vehicle, [0,0,0], [], 0, "CAN_COLLIDE"]; _veh setposATL _position; _veh setDir _spawnDir; }; }; And i still go through the actions but never get bike.
-
Everything works except there is no bike. No errors but after going through the motion and removing duct tape i get no bike.
-
Bump
-
For Tanoa I think 8000.00 8000.00 should be close.
-
Is there any way to add this to Infistars version of XM8 Apps ?
-
Didnt see a .paa file for the image in the XM8 so i grabbed one off the internet quick for people to use if they want. .paa file http://www.zombiebattaliongaming.com/ArmaFiles/selfie.rar
-
Got this error when hitting the back button on airdrop script... https://gyazo.com/d72ac72f32015c5cfbc4d3db9a2c6d5b
-
I added a custom status bar at the bottom of my screen...how do i stop the original one from showing ?
-
Adding key worked but now i have this issue on Char create....
-
I got the restart issue fixed but now have this issue when trying to connect to my server. https://gyazo.com/18ad04a762397bbff139b9049b7cf370 **** FIXED *** I followed the tutorial from this site for a Namalsk server and when i try to start the server it gets to this screen https://gyazo.com/594418877c1b1dd4ced6b6b9586c88ce and then restarts. What could be wrong ?