Ok I have tryed and played around with it but i cant find what i am doing wrong.
lets say i want to move a M2 from posA(being where it started) to posB(a pos being marked by a marker) the M2 name=m2 how would i enter this into the script?
CODE Template =objectname setpos (getmarkerpos "markername")Actual code =M2 setpos (getmarkerpos "posB")NB>>> if posB is a marker
also i want to exec this from the action menu how would i do this...
I have tryed a simple flare script but it dosnt work from action menu, it says "flare.sqs not found" now i know the flare sqs is in the folder and does work
this is how i attepted it
this addaction [Fire Flare,{exec "flare.sqs"}]
but it comes up with that "flare.sqs not found" message
what am i doing wrong?
I am still learning so thanks for the help...
this addaction [Fire Flare,{exec "flare.sqs"}if it is displaying an error message .sqs not found.
There can only be 3 reasons
a) flare.sqs[/ doesnt exist
b) you have made a typo error somewhere, either filename or any script line that refers to it
c) you have not specified the correct path for the flare.sqs
what i mean by "C" is that if you placed it in a folder within your mission folder, lets say you placed it in a folder named "Client"
then
exec "flare.sqs"
should be
exec "client\flare.sqs"