This commit is contained in:
zaCade
2019-03-02 15:17:41 +01:00
parent 57bbd5d55e
commit d1fa3d4eb7
464 changed files with 8280 additions and 0 deletions
@@ -0,0 +1,11 @@
#if defined _unloze_racetimer_antizones_included_
#endinput
#endif
#define _unloze_racetimer_antizones_included_
/**
* Resets a clients timer if they enter an zone labeled ZONE_PREFIX_ANTI
* @int client entering an ANTI zone
* @bool true if the clients timer has to be disabled
*/
forward void CheckifAntiZones(int client, bool reset);
@@ -0,0 +1,15 @@
#if defined _unloze_racetimer_specialmaps_included_
#endinput
#endif
#define _unloze_racetimer_specialmaps_included_
/**
* Called on Every Round start to identify if special roundzones exist
* @char resultStart returns name of special startzone
* @char resultEnd returns name of special endzone
*/
forward void CheckIfSpecialRoundZones(char[] resultstart, char[] resultend);
/**
* @returns true if mako currently
*/
native bool unloze_gBSpecialMapDisplay();
@@ -0,0 +1,40 @@
/** Double-include prevention */
#if defined _unloze_zones_included_
#endinput
#endif
#define _unloze_zones_included_
/**
* Called when client Enters a zone
*
* @int Client entering zone.
* @char name of the zone.
*/
forward void unloze_zoneEntry(int client, char[] zone);
/**
* Called when client Leaves a zone
*
* @int Client leaving zone.
* @char name of the zone.
*/
forward void unloze_zoneLeave(int client, char[] zone);
/**
* Called when a new zone is created
*/
forward void unloze_zoneCreated();
/**
* @int zone index
* @char modifies the zone indexes name
*/
native void ZoneNameBasedOnIndex(int index, char[] callbackresult);
/**
* @returns total count of zones
*/
native int unloze_zoneCount();