Jump to content
Sign in to follow this  
The931stSoldier

missing scripts in missions

Recommended Posts

hello people pf the forums i have an ongoing problem i am hoping you will be able to help me with and that problem is scripts im trying to use some addons and templates and when i copy and paste them in my missions ill get the sqs not message now i have tried copying the actual SQS file and putting it in the mission file but i still get this message

for example i am trying to use the adhelos pack and when i place the way point and the script on the mission the chopper will fly to the point and execute the fastrope and say move1.sqs not found and th eaddon didnt even come with that sqs file or when i try and use the template for the massive c130 air drop the c130'swill fly to the trigger then say eject sqs not found even after i put it in the mission folder itself

Share this post


Link to post
Share on other sites

How are you calling the scripts?

[] exec "scripts.sqs" or nul = [] execVM "script.sqf" ??? You have to make sure the sqs/sqf file in your mission folder matches what you are calling.

Share this post


Link to post
Share on other sites

for the adhelo i tookout nul= amd the execVM because it said "type script expect nothing " but ill try it

---------- Post added at 08:09 PM ---------- Previous post was at 08:04 PM ----------

for the paradrop script it is exactly what it says " plane exec "eject1.sqs" and eject1.sqs is the script i put in the mission folder

Share this post


Link to post
Share on other sites

Try this ejectscript instead of the sqs:

eject.sqf

if (isServer) then 
{
_grp = _this select 0;

sleep (random 3);

{
	unassignVehicle (_x); 
	(_x) action ["EJECT", vehicle _x];
	sleep 0.4;
} foreach units _grp;
};

Called in the planes waypoint, the groupname is the name of the group that will be ejected. Remember to put groupname=group this in the init line of the group leader.

nul = [groupName] execVM "eject.sqf"

for the paradrop script it is exactly what it says " plane exec "eject1.sqs" and eject1.sqs is the script i put in the mission folder

I believe it should be [plane] exec "eject1.sqs"

Edited by cobra4v320

Share this post


Link to post
Share on other sites

see i tried that i put the "eject1.sqs" in the mission folder for the mission i was working on in my documents just like with the fastrope script and i call it correctly

nul = [helo, 30, "move1.sqs"] execVM "\ad_helos\FastRope\scripts\fast_rope_AI_pilot.sqf"

move1.sqs is in the folder but it claims it cant find it

Share this post


Link to post
Share on other sites

where does the gme look for a script when its called is the the mission folder or addons folder i dont understand whats wrong

Share this post


Link to post
Share on other sites

Post your mission please, that'll be a lot easier than us trying to ask you the right question.

Share this post


Link to post
Share on other sites

[/color]ok here we go

Airborne%20Operations.Takistan

http://www.mediafire.com/?ooh679f4y524c

Air%20Assault%20Operations.Takistan

http://www.mediafire.com/?zfjac51a4hvix

---------- Post added at 07:56 AM ---------- Previous post was at 07:50 AM ----------

ok here it is i uploaded it im not sure if i did it right but ill include the mission titles in case for some reason i cannot see my reply on the forums when i post but ill try

Airborne%20Operations.Takistan

http://www.mediafire.com/?ooh679f4y524c

Air%20Assault%20Operations.Takistan

http://www.mediafire.com/?zfjac51a4hvix

Share this post


Link to post
Share on other sites

Once someone can help me clearly understand what im doing wrong it will defiantly open up alot of new mission making oppurtunities for me

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×