Jump to content

Helicopter Parachute Supply Drop


tdavison

Recommended Posts

Unless i screwed something up, your update has the notifications showing the formatting and the message...

 

Still centered at the bottom in white but all formatting is shown.

 

Hey Chisel:

 

I changed the messaging to "hint" rather than titleText. You have to edit your epoch.Altis init.sqf, and change the old "SDROP_Alert" to the following:

//Supply Drop Alert Event
"SDROP_Alert" addPublicVariableEventHandler {
hint parseText format["%1", _this select 1];
};
Link to comment
Share on other sites

Awesome script...however... anyone else notice that there is a random Mohawk floating/hovering at random locations on the map?

 

I noticed one yesterday over the central spawn but assumed a player had logged in flight, only just realised that they can't fly ghosthawks, only ai do?

Link to comment
Share on other sites

Awesome script...however... anyone else notice that there is a random Mohawk floating/hovering at random locations on the map?

I believe that is the supply heli looking for a spot to drop.  This happens on my server as well.  Heli hovers, then moves a bit to a new location, hovers, moves, I believe they are looking for a clear spot to drop...

Link to comment
Share on other sites

 

I just found this in my log: 

12:18:56 Error in expression <str _report];
};
};

SDROPBroadcast = {
private ["title","subTitle"];

_title = >
12:18:56   Error position: <private ["title","subTitle"];

_title = >
12:18:56   Error Local variable in global space
12:18:56 File SDROP\init.sqf, line 220

 

I'll issue a hot fix for this - I believe if you change the private variables like so, it will fix the error:

 

private ["_title","_subTitle"];

Link to comment
Share on other sites

Thanks for the update! Next request, and this was touched on by at least one other reply, how about randomization of the box contents? Maybe even have the loot pulled from the Epoch loot tables?

 

I thought about randomizing all the crates, but wanted to avoid issues with BE filters. I'll consider this in a future update. 

Link to comment
Share on other sites

I believe that is the supply heli looking for a spot to drop.  This happens on my server as well.  Heli hovers, then moves a bit to a new location, hovers, moves, I believe they are looking for a clear spot to drop...

 

That is really odd - I tested by setting my timer to 30-seconds, and admin TP to crate to re-start mission (literally hundreds of times)... I even had like 6-8 heli's on the map at the same time... all found a place to drop, and all returned and got de-spawned. I'll try to add some logic in there for timing if a crate never gets dropped. 

Link to comment
Share on other sites

I thought about randomizing all the crates, but wanted to avoid issues with BE filters. I'll consider this in a future update. 

 

What BE issues? So far I haven't had any kicks for BE.

 

Is there a mission time out? I had a few instances of players being unable to find the crate at all, I'd like to set a time out to despawn and restart the mission if nobody finds it in time.

 

The way you could be sure is to use the admin tool to show all vehicles and you should find it.

Link to comment
Share on other sites

What BE issues? So far I haven't had any kicks for BE.

 

 

The way you could be sure is to use the admin tool to show all vehicles and you should find it.

Oh, it was definitely there. It's just nobody could find it (it landed in some reeds and wasn't visible). I'd rather not have to have an admin point out where it is though :D

Link to comment
Share on other sites

Is it possible to add more locations to this script? The airdrop lands in the same area everytime, would have been nice if it switched between 3-5 different locations=) Just an idea!

 

I haven't had a lot of time to be on my server lately, but I have seen the box land in several different places. I believe it's all random.

Link to comment
Share on other sites

That is really odd - I tested by setting my timer to 30-seconds, and admin TP to crate to re-start mission (literally hundreds of times)... I even had like 6-8 heli's on the map at the same time... all found a place to drop, and all returned and got de-spawned. I'll try to add some logic in there for timing if a crate never gets dropped. 

I'm on Taviana and could be the map center etc...  

Link to comment
Share on other sites

Oh, it was definitely there. It's just nobody could find it (it landed in some reeds and wasn't visible). I'd rather not have to have an admin point out where it is though :D

 

There is a marker in missions/SDROP_SupplyDrop.sqf that will give the exact location of the crate - I commented it out as I felt it made it too easy to find the crate. You can comment-out the original marker and un-comment the exact postion marker - see below:

//create marker at supply crate's landing zone (NOTE: only an approximation of where crate will be, and crate could be slightly outside the LZ)
_marker = createMarker ["SupplyDropMarker", _wpPosition ];
_marker setMarkerSize [500,500];
_marker setMarkerBrush "Horizontal";
_marker setMarkerShape "ELLIPSE";
_marker setMarkerColor "ColorCIV";

//If you decide to use the marker below, comment out marker above
//This marker spawns on the crate - giving away the crate's exact position
//_marker = createMarker ["SupplyDropMarker", getPos _crate ];
//_marker setMarkerType "mil_objective";
//_marker setMarkerColor "ColorYellow";

In the above code, you would un-comment the second marker, and comment-out the top marker.

Link to comment
Share on other sites

I'm on Taviana and could be the map center etc...  

 

Chisel:

 

If you can open the map editor for Taviana, you can find the center coordinates for the map (this addon was made for Altis). Anyway, if you can find the center for Taviana, divide those by 2, and put those values in the SDROP_SupplyDrop.sqf

//these variables determine a safe location for the supply crate drops
//map center is based on ALTIS with halved values
_mapCenter = [7720,7671,0];
_coords = [_mapCenter,500,14000,30,0,10,0] call BIS_fnc_findSafePos;

You may want to adjust the 14000 also, as that determines how far out from center to look for drop zones.

Link to comment
Share on other sites

19:21:15 Warning Message: No entry 'bin\config.bin/CfgMagazines.FootSnooter'.
19:21:15 Warning Message: No entry '.picture'.
19:21:15 Warning Message: '/' is not a value
19:21:15 Warning Message: No entry '.scope'.
19:21:15 Warning Message: '/' is not a value
19:21:15 Warning Message: Error: creating magazine FootSnooter with scope=private
19:21:15 Warning Message: No entry '.displayName'.
19:21:15 Warning Message: '/' is not a value
19:21:15 Warning Message: No entry '.displayNameShort'.
19:21:15 Warning Message: '/' is not a value
19:21:15 Warning Message: No entry '.nameSound'.
19:21:15 Warning Message: '/' is not a value
19:21:15 Warning Message: No entry '.Library'.
19:21:15 Warning Message: No entry '.libTextDesc'.
19:21:15 Warning Message: '/' is not a value
19:21:15 Warning Message: No entry '.type'.
19:21:15 Warning Message: '/' is not a value
19:21:15 Warning Message: No entry '.count'.
19:21:15 Warning Message: '/' is not a value
19:21:15 Warning Message: No entry '.maxLeadSpeed'.
19:21:15 Warning Message: '/' is not a value
19:21:15 Warning Message: No entry '.initSpeed'.
19:21:15 Warning Message: '/' is not a value
19:21:15 Warning Message: No entry '.reloadAction'.
19:21:15 Warning Message: '/' is not a value
19:21:15 Warning Message: No entry '.modelSpecial'.
19:21:15 Warning Message: '/' is not a value
19:21:15 Warning Message: No entry '.ammo'.
19:21:15 Warning Message: '/' is not a value
19:22:19 Error: Object(3 : 13) not found
19:25:53 Error: Object(3 : 17) not found
19:27:47 Warning: looped for animation: a3\animals_f_beta\chicken\data\anim\hen\henwalk.rtm differs (looped now 0)! MoveName: hen_stop2lean
19:27:47 Warning: looped for animation: a3\animals_f_beta\chicken\data\anim\hen\henwalk.rtm differs (looped now 1)! MoveName: hen_lean2stop
19:28:15 "playerDisconnected:76561198070365822:ITOLHCS"
19:29:14 Warning Message: No entry 'bin\config.bin/CfgMagazines.Heal_EPOCH'.
19:29:14 Warning Message: No entry '.picture'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.scope'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: Error: creating magazine Heal_EPOCH with scope=private
19:29:14 Warning Message: No entry '.displayName'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.displayNameShort'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.nameSound'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.Library'.
19:29:14 Warning Message: No entry '.libTextDesc'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.type'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.count'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.maxLeadSpeed'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.initSpeed'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.reloadAction'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.modelSpecial'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.ammo'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry 'bin\config.bin/CfgMagazines.Repair_EPOCH'.
19:29:14 Warning Message: No entry '.picture'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.scope'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: Error: creating magazine Repair_EPOCH with scope=private
19:29:14 Warning Message: No entry '.displayName'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.displayNameShort'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.nameSound'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.Library'.
19:29:14 Warning Message: No entry '.libTextDesc'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.type'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.count'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.maxLeadSpeed'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.initSpeed'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.reloadAction'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.modelSpecial'.
19:29:14 Warning Message: '/' is not a value
19:29:14 Warning Message: No entry '.ammo'.
19:29:14 Warning Message: '/' is not a value
19:29:54 "playerConnected:76561198070365822:ITOLHCS"
19:30:04 No speaker given for Rahim Khalili
19:30:04 Speaker Male04_F not found in CfgVoiceTypes
19:30:14 "SKN AdminLog ["Map to Teleport",2,B Alpha 1-1:1 (ITOLHCS) REMOTE,"uivjczlh"]"
19:30:14 "SKN2 AdminRequest [["19:20","Sgt. Scrapmetal"," -ON-","Vehicle MARKER"],["19:20","Sgt. Scrapmetal"," -ON-","Map to Teleport"],["19:30","Sgt. Scrapmetal"," -ON-","Map to Teleport"]]"
19:30:15 "SKN AdminLog ["AI MARKER",2,B Alpha 1-1:1 (ITOLHCS) REMOTE,"uivjczlh"]"
19:30:15 "SKN2 AdminRequest [["19:20","Sgt. Scrapmetal"," -ON-","Vehicle MARKER"],["19:20","Sgt. Scrapmetal"," -ON-","Map to Teleport"],["19:30","Sgt. Scrapmetal"," -ON-","Map to Teleport"],["19:30","Sgt. Scrapmetal"," -ON-","AI MARKER"]]"
19:30:16 "SKN AdminLog ["Vehicle MARKER",2,B Alpha 1-1:1 (ITOLHCS) REMOTE,"uivjczlh"]"
19:30:16 "SKN2 AdminRequest [["19:20","Sgt. Scrapmetal"," -ON-","Vehicle MARKER"],["19:20","Sgt. Scrapmetal"," -ON-","Map to Teleport"],["19:30","Sgt. Scrapmetal"," -ON-","Map to Teleport"],["19:30","Sgt. Scrapmetal"," -ON-","AI MARKER"],["19:30","Sgt. Scrapmetal"," -ON-","Vehicle MARKER"]]"
19:33:12 Warning Message: No entry 'bin\config.bin/CfgMagazines.Heal_EPOCH'.
19:33:12 Warning Message: No entry '.picture'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.scope'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: Error: creating magazine Heal_EPOCH with scope=private
19:33:12 Warning Message: No entry '.displayName'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.displayNameShort'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.nameSound'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.Library'.
19:33:12 Warning Message: No entry '.libTextDesc'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.type'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.count'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.maxLeadSpeed'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.initSpeed'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.reloadAction'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.modelSpecial'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.ammo'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry 'bin\config.bin/CfgMagazines.Repair_EPOCH'.
19:33:12 Warning Message: No entry '.picture'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.scope'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: Error: creating magazine Repair_EPOCH with scope=private
19:33:12 Warning Message: No entry '.displayName'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.displayNameShort'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.nameSound'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.Library'.
19:33:12 Warning Message: No entry '.libTextDesc'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.type'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.count'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.maxLeadSpeed'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.initSpeed'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.reloadAction'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.modelSpecial'.
19:33:12 Warning Message: '/' is not a value
19:33:12 Warning Message: No entry '.ammo'.
19:33:12 Warning Message: '/' is not a value
19:33:53 Error: Object(3 : 28) not found
19:34:51 "#SEM: Running Mission 1 "Plane Crashsite" at Position [6681.52,7876.76,0]"
19:34:53 "#SEM: Spawned 10 units at position [6681.52,7876.76,0]"
19:37:40 Warning Message: No entry 'bin\config.bin/CfgMagazines.FootSnooter'.
19:37:40 Warning Message: No entry '.picture'.
19:37:40 Warning Message: '/' is not a value
19:37:40 Warning Message: No entry '.scope'.
19:37:40 Warning Message: '/' is not a value
19:37:40 Warning Message: Error: creating magazine FootSnooter with scope=private
19:37:40 Warning Message: No entry '.displayName'.
19:37:40 Warning Message: '/' is not a value
19:37:40 Warning Message: No entry '.displayNameShort'.
19:37:40 Warning Message: '/' is not a value
19:37:40 Warning Message: No entry '.nameSound'.
19:37:40 Warning Message: '/' is not a value
19:37:40 Warning Message: No entry '.Library'.
19:37:40 Warning Message: No entry '.libTextDesc'.
19:37:40 Warning Message: '/' is not a value
19:37:40 Warning Message: No entry '.type'.
19:37:40 Warning Message: '/' is not a value
19:37:40 Warning Message: No entry '.count'.
19:37:40 Warning Message: '/' is not a value
19:37:40 Warning Message: No entry '.maxLeadSpeed'.
19:37:40 Warning Message: '/' is not a value
19:37:40 Warning Message: No entry '.initSpeed'.
19:37:40 Warning Message: '/' is not a value
19:37:40 Warning Message: No entry '.reloadAction'.
19:37:40 Warning Message: '/' is not a value
19:37:40 Warning Message: No entry '.modelSpecial'.
19:37:40 Warning Message: '/' is not a value
19:37:40 Warning Message: No entry '.ammo'.
19:37:40 Warning Message: '/' is not a value
 

 

After instal this script any ideas?

Link to comment
Share on other sites

19:21:15 Warning Message: No entry 'bin\config.bin/CfgMagazines.FootSnooter'.

19:21:15 Warning Message: No entry '.picture'.

19:21:15 Warning Message: '/' is not a value

19:21:15 Warning Message: No entry '.scope'.

19:21:15 Warning Message: '/' is not a value

19:21:15 Warning Message: Error: creating magazine FootSnooter with scope=private

19:21:15 Warning Message: No entry '.displayName'.

19:21:15 Warning Message: '/' is not a value

19:21:15 Warning Message: No entry '.displayNameShort'.

19:21:15 Warning Message: '/' is not a value

19:21:15 Warning Message: No entry '.nameSound'.

19:21:15 Warning Message: '/' is not a value

19:21:15 Warning Message: No entry '.Library'.

19:21:15 Warning Message: No entry '.libTextDesc'.

19:21:15 Warning Message: '/' is not a value

19:21:15 Warning Message: No entry '.type'.

19:21:15 Warning Message: '/' is not a value

19:21:15 Warning Message: No entry '.count'.

19:21:15 Warning Message: '/' is not a value

19:21:15 Warning Message: No entry '.maxLeadSpeed'.

19:21:15 Warning Message: '/' is not a value

19:21:15 Warning Message: No entry '.initSpeed'.

19:21:15 Warning Message: '/' is not a value

19:21:15 Warning Message: No entry '.reloadAction'.

19:21:15 Warning Message: '/' is not a value

19:21:15 Warning Message: No entry '.modelSpecial'.

19:21:15 Warning Message: '/' is not a value

19:21:15 Warning Message: No entry '.ammo'.

19:21:15 Warning Message: '/' is not a value

19:22:19 Error: Object(3 : 13) not found

19:25:53 Error: Object(3 : 17) not found

19:27:47 Warning: looped for animation: a3\animals_f_beta\chicken\data\anim\hen\henwalk.rtm differs (looped now 0)! MoveName: hen_stop2lean

19:27:47 Warning: looped for animation: a3\animals_f_beta\chicken\data\anim\hen\henwalk.rtm differs (looped now 1)! MoveName: hen_lean2stop

19:28:15 "playerDisconnected:76561198070365822:ITOLHCS"

19:29:14 Warning Message: No entry 'bin\config.bin/CfgMagazines.Heal_EPOCH'.

19:29:14 Warning Message: No entry '.picture'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.scope'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: Error: creating magazine Heal_EPOCH with scope=private

19:29:14 Warning Message: No entry '.displayName'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.displayNameShort'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.nameSound'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.Library'.

19:29:14 Warning Message: No entry '.libTextDesc'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.type'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.count'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.maxLeadSpeed'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.initSpeed'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.reloadAction'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.modelSpecial'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.ammo'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry 'bin\config.bin/CfgMagazines.Repair_EPOCH'.

19:29:14 Warning Message: No entry '.picture'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.scope'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: Error: creating magazine Repair_EPOCH with scope=private

19:29:14 Warning Message: No entry '.displayName'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.displayNameShort'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.nameSound'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.Library'.

19:29:14 Warning Message: No entry '.libTextDesc'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.type'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.count'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.maxLeadSpeed'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.initSpeed'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.reloadAction'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.modelSpecial'.

19:29:14 Warning Message: '/' is not a value

19:29:14 Warning Message: No entry '.ammo'.

19:29:14 Warning Message: '/' is not a value

19:29:54 "playerConnected:76561198070365822:ITOLHCS"

19:30:04 No speaker given for Rahim Khalili

19:30:04 Speaker Male04_F not found in CfgVoiceTypes

19:30:14 "SKN AdminLog ["Map to Teleport",2,B Alpha 1-1:1 (ITOLHCS) REMOTE,"uivjczlh"]"

19:30:14 "SKN2 AdminRequest [["19:20","Sgt. Scrapmetal"," -ON-","Vehicle MARKER"],["19:20","Sgt. Scrapmetal"," -ON-","Map to Teleport"],["19:30","Sgt. Scrapmetal"," -ON-","Map to Teleport"]]"

19:30:15 "SKN AdminLog ["AI MARKER",2,B Alpha 1-1:1 (ITOLHCS) REMOTE,"uivjczlh"]"

19:30:15 "SKN2 AdminRequest [["19:20","Sgt. Scrapmetal"," -ON-","Vehicle MARKER"],["19:20","Sgt. Scrapmetal"," -ON-","Map to Teleport"],["19:30","Sgt. Scrapmetal"," -ON-","Map to Teleport"],["19:30","Sgt. Scrapmetal"," -ON-","AI MARKER"]]"

19:30:16 "SKN AdminLog ["Vehicle MARKER",2,B Alpha 1-1:1 (ITOLHCS) REMOTE,"uivjczlh"]"

19:30:16 "SKN2 AdminRequest [["19:20","Sgt. Scrapmetal"," -ON-","Vehicle MARKER"],["19:20","Sgt. Scrapmetal"," -ON-","Map to Teleport"],["19:30","Sgt. Scrapmetal"," -ON-","Map to Teleport"],["19:30","Sgt. Scrapmetal"," -ON-","AI MARKER"],["19:30","Sgt. Scrapmetal"," -ON-","Vehicle MARKER"]]"

19:33:12 Warning Message: No entry 'bin\config.bin/CfgMagazines.Heal_EPOCH'.

19:33:12 Warning Message: No entry '.picture'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.scope'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: Error: creating magazine Heal_EPOCH with scope=private

19:33:12 Warning Message: No entry '.displayName'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.displayNameShort'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.nameSound'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.Library'.

19:33:12 Warning Message: No entry '.libTextDesc'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.type'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.count'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.maxLeadSpeed'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.initSpeed'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.reloadAction'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.modelSpecial'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.ammo'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry 'bin\config.bin/CfgMagazines.Repair_EPOCH'.

19:33:12 Warning Message: No entry '.picture'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.scope'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: Error: creating magazine Repair_EPOCH with scope=private

19:33:12 Warning Message: No entry '.displayName'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.displayNameShort'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.nameSound'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.Library'.

19:33:12 Warning Message: No entry '.libTextDesc'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.type'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.count'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.maxLeadSpeed'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.initSpeed'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.reloadAction'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.modelSpecial'.

19:33:12 Warning Message: '/' is not a value

19:33:12 Warning Message: No entry '.ammo'.

19:33:12 Warning Message: '/' is not a value

19:33:53 Error: Object(3 : 28) not found

19:34:51 "#SEM: Running Mission 1 "Plane Crashsite" at Position [6681.52,7876.76,0]"

19:34:53 "#SEM: Spawned 10 units at position [6681.52,7876.76,0]"

19:37:40 Warning Message: No entry 'bin\config.bin/CfgMagazines.FootSnooter'.

19:37:40 Warning Message: No entry '.picture'.

19:37:40 Warning Message: '/' is not a value

19:37:40 Warning Message: No entry '.scope'.

19:37:40 Warning Message: '/' is not a value

19:37:40 Warning Message: Error: creating magazine FootSnooter with scope=private

19:37:40 Warning Message: No entry '.displayName'.

19:37:40 Warning Message: '/' is not a value

19:37:40 Warning Message: No entry '.displayNameShort'.

19:37:40 Warning Message: '/' is not a value

19:37:40 Warning Message: No entry '.nameSound'.

19:37:40 Warning Message: '/' is not a value

19:37:40 Warning Message: No entry '.Library'.

19:37:40 Warning Message: No entry '.libTextDesc'.

19:37:40 Warning Message: '/' is not a value

19:37:40 Warning Message: No entry '.type'.

19:37:40 Warning Message: '/' is not a value

19:37:40 Warning Message: No entry '.count'.

19:37:40 Warning Message: '/' is not a value

19:37:40 Warning Message: No entry '.maxLeadSpeed'.

19:37:40 Warning Message: '/' is not a value

19:37:40 Warning Message: No entry '.initSpeed'.

19:37:40 Warning Message: '/' is not a value

19:37:40 Warning Message: No entry '.reloadAction'.

19:37:40 Warning Message: '/' is not a value

19:37:40 Warning Message: No entry '.modelSpecial'.

19:37:40 Warning Message: '/' is not a value

19:37:40 Warning Message: No entry '.ammo'.

19:37:40 Warning Message: '/' is not a value

 

 

After instal this script any ideas?

 

Schloti1993:

 

I pretty sure none of those warnings are part of my add-on.

Link to comment
Share on other sites

I'm on Taviana and could be the map center etc...  

 

Chisel - I found these coordinates for Tavi in A3AEI's config: ["tavi",[10887.825, 11084.657],8500]

 

So, you could modify the coordinates like so for Tavi:

//these variables determine a safe location for the supply crate drops
//map center below is based on TAVI with halved values
_mapCenter = [5444,5543,0];
_coords = [_mapCenter,500,8000,30,0,10,0] call BIS_fnc_findSafePos;

Try those coords and let me know if you continue to have issues.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
×
×
  • Create New...