Is it possible to change the sky during game play or on new round? I read
here that only the players that would connect
after the sky has changed would be able to see it, by any chance I could make the other players see it too?
Something else I wanted to ask, is this a correct way of displaying data inside variable to MOTD? I'm unable to test.
PHP Code:
new szMotdInfo[ 256 ], szName[ 32 ];
get_user_name( id, szName, charsmax( szName ) );
formatex( szMotdInfo, charsmax( szMotdInfo ), "Player Name: %s \nKills: %d \nDamage: %.1f \nHeadshots: %d", szName, g_iPlayerStats[ id ][ Player_Kills ], g_iPlayerStats[ id ][ Player_Damage ], g_iPlayerStats[ id ][ Player_HeadShots ] );
show_motd( id, szMotdInfo, "Stats" );
Thanks!
__________________