pcpilot 0 Posted April 15, 2007 I am making a simple mission where the player and his coop team have a meeting engagement against an enemy tank and two squads. They are battling on the island of Rahmadi over the single central village on that map. I have placed a flag at the center of town. I was wondering if anyone knows where I can get and implement a script to make the flag change to the side with control and give them points for its possession, say, for the amount of time either side holds it. Ive been using the triggers "OpFor and BluFor has possession" I think it is. But while this tells me who has the center of town, the flag of course does not change. Â I really dont want to get into scripting myself as I dont have that much time. Perhaps someone would be willing to help with a script? PS. I also am not familier with how to implement a script so maybe someone could enlighten me. Share this post Link to post Share on other sites
fasad 1 Posted April 19, 2007 If you are not able to put in the time, you won't make a mission. Use a seized by trigger. scripting setFlagTexture addScore very basic example. This won't work with copy and paste but you should be able to figure it out. create a : flag named myFlag Seized by OPFOR trigger on activation : [] exec "opforControl.sqs" on deactivation : [] exec "bluforControl.sqs" opForControl.sqs: myFlag setFlagTexture sla #loop [east units] addScore points ~20 goto "loop" myFlag setFlagTexture usa #loop [west units] addScore points ~20 goto "loop" Share this post Link to post Share on other sites