View Single Post
  #11  
Old 04-26-2011, 01:38 PM
Ataros Ataros is offline
Approved Member
 
Join Date: Jun 2010
Location: USSR
Posts: 2,439
Default

Quote:
Originally Posted by mcler002 View Post
Ive got the script to work... but no aircraft appear... (i have 6 spitfires loaded on the map)...

And can someone explain the tick counter and how to "work it"

Cheers
Check that path is correct and open doghous3 or my example to add a line printing smth on screen to confirm that mission is loaded.

30 tics a second give you 1800 tics per minute.

if (Time.tickCounter() % 1200 == 0)

1200 - is cycle here
0 - is initial delay before running script.

I'd suggest taking doghous3 script to start with and just change filenames in it to avoid simple mistakes. This is what I did with his mission.
Reply With Quote