Franc1sco / Fortnite-Emotes-Extended

Fortnite Emotes plugin with all the private emotes included
https://forums.alliedmods.net/showthread.php?t=318981
GNU General Public License v3.0
52 stars 31 forks source link

fix some memory leak & add Pre Forward #12

Closed e54385991 closed 4 years ago

e54385991 commented 4 years ago

Like public Action fnemotes_OnEmote_Pre(int client) { if(Timer_InsideZone(client,MAIN_START) != -1 || Timer_InsideZone(client,MAIN_END) != -1 || Timer_InsideZone(client,BONUS_START) != -1 || Timer_InsideZone(client,BONUS_END) != -1 || Timer_InsideZone(client,ANTICHEAT) != -1 || Timer_InsideZone(client,FREESTYLE) != -1 || Timer_InsideZone(client,SLIDE) != -1) { PrintToChat(client," Can't use emotes in timer zone."); return Plugin_Handled; }

return Plugin_Continue;

}