View Single Post
Root_
Veteran Member
Join Date: Jan 2012
Location: ryssland
Old 02-02-2014 , 11:47   Re: [ANY] Map Zones (with forwards)
Reply With Quote #36

Yea, you can create a plugin and activate/diactivate zones by name.
Code:
public OnPluginStart() {     HookEvent("round_start", OnRoundStart) } public OnRoundStart(Handle:event, const String:name[], bool:dontBroadcast) {     ServerCommand("sm_diactzone myzone")     CreateTimer(20.0, Timer_ActivateZone, _, TIMER_FLAG_NO_MAPCHANGE) } public Action:Timer_ActivateZone(Handle:timer) {     ServerCommand("sm_actzone myzone") }
__________________


dodsplugins.com - Plugins and Resources for Day of Defeat
http://twitch.tv/zadroot
Root_ is offline