SA-MP Forums Archive
[GameMode] Terrorists vs Soldiers [sscanf2, zcmd, y_ini] - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Gamemode Scripts (https://sampforum.blast.hk/forumdisplay.php?fid=71)
+--- Thread: [GameMode] Terrorists vs Soldiers [sscanf2, zcmd, y_ini] (/showthread.php?tid=357800)



Terrorists vs Soldiers [sscanf2, zcmd, y_ini] - Giovanni - 08.07.2012

Introduction

Note: This project was not meant to be released in the first place, that's why some parts/features are unfinished or not implemented at all.


This is a quite simple teamdeathmatch script. Like the name already says: there are 2 groups, Terrorists and Soldiers. The goal of the Terrorists is to steal all 3 flags from the soldiers. Those flags can be spread all over the map. The Soldiers however have to try to stop them.


How to win...
Features
Downsides / not implented features (yet): Creating Maps

Creating maps is quite simple. If your map uses a filterscript (for objects & vehicles) you will need 2 files:

Code:
Map_1.ini (scriptfiles/TvS/maps/Map_1.ini)
Map_1.amx (filterscipts/Map_1.amx)
If it does not use a filterscript (if you don't need any objects or vehicles) you will only need Map_1.ini in this case.

The Map_x.ini must look like this:
Code:
[map]
Name = <MapName>
Creator = <MapCreator>
SpawnRedX = 0.0
SpawnRedY = 0.0
SpawnRedZ = 0.0
SpawnGreenX = 0.0
SpawnGreenY = 0.0
SpawnGreenZ = 0.0
Interior = 0
Time = 20 // ... The world time you want to have in your map
Weather = 0 // ... The weather you want to have in your map
Flag1X = 0.0
Flag1Y = 0.0
Flag1Z = 0.0
Flag2X = 0.0
Flag2Y = 0.0
Flag2Z = 0.0
Flag3X = 0.0
Flag3Y = 0.0
Flag3Z = 0.0
HasFS = true/false // ... Must be 'true' if you want to use a filterscript for this map (objects & vehicles)
IMPORTANT:

The map IDs must be in a row (e.g.: 0,1,2,3,...). If you delete a map, you must update the IDs. That's not really a good solution, I know. I might change this in later versions. The map system always chooses the next map. If it does not exist, it will automatically set the map to ID 0.

Changelog

VersionChanges
3.24First public release
More or less important stuff

Credits

Download

Main:
Terrorists vs Soldiers Gamemode

Other:
YSI 3.1
sscanf 2
Whirlpool
Streamer