mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-24 13:55:36 +03:00
obey mp_chattime
This commit is contained in:
parent
3ba4ece791
commit
7471a45bf4
@ -84,9 +84,10 @@ public delayedChange( param[] )
|
||||
|
||||
public changeMap(){
|
||||
new string[32]
|
||||
set_cvar_float( "mp_chattime" , 3.0 ) // make sure mp_chattime is long
|
||||
new Float:chattime = get_cvar_float("mp_chattime")
|
||||
set_cvar_float( "mp_chattime" , chattime + 2.0 ) // make sure mp_chattime is long
|
||||
new len = getNextMapName(string, 31) + 1
|
||||
set_task( 1.5 , "delayedChange" , 0 , string , len ) // change with 1.5 sec. delay
|
||||
set_task( chattime , "delayedChange" , 0 , string , len ) // change with 1.5 sec. delay
|
||||
}
|
||||
|
||||
new g_warning[] = "WARNING: Couldn't find a valid map or the file doesn't exist (file ^"%s^")"
|
||||
|
Loading…
Reference in New Issue
Block a user