crazyboy írta:
Ha letölti de nem játssza le akkor rossz a hang vagy a megadott elérési út. Ha 1 hangod van minek a random?
try
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(256)
new g = random(256)
new b = random(256)
set_hudmessage(r,g,b, -1.0, 0.30, 0, 6.0, 6.0, 1.0, 0.15, 1)
show_hudmessage(0,"^nKészülj fel a Csatára!^n%d. Forduló!", g_roundCount)
client_cmd(0,"spk sound/NoVa/hang.wav");
}
public reset_counter(){
g_roundCount = 0
}
public plugin_precache(){
precache_sound("NoVa/hang.wav")
return PLUGIN_CONTINUE
}
Hát nem tudom így se mukszik