mforce írta:
SMA Forráskód: [ Mindet kijelol ]#include <amxmodx>#include <amxmisc> new const PLUGIN [] = "AMX Round Count"new const VERSION [] = "0.0.1"new const AUTHOR [] = "Duna" new g_roundCount; public plugin_init(){ register_plugin(PLUGIN,VERSION,AUTHOR) register_event("RoundTime", "roundcount", "bc") register_event("TextMsg","reset_counter","a","2&#Game_C","2&#Game_w") return PLUGIN_CONTINUE} public roundcount() if ( read_data(1) == floatround(get_cvar_float("mp_roundtime") * 60.0) ) { ++g_roundCount new r = random(255) new g = random(255) new b = random(255) set_hudmessage(r,g,b, -1.0, 0.30, 0, 6.0, 6.0, 1.0, 0.15, 1) show_hudmessage(0,"Készülj fel a Csatára!^n%d. Forduló!", g_roundCount) } public reset_counter(){ g_roundCount = 0}
Nagyon köszönöm
