Bulunduğu Kütüphane: Amxmodx
İşlevi: Servere Komut Yazdırır.
Örnek Eklenti:
PHP Kod:
#include <amxmodx>
#include <reapi>
new const PLUGIN[] = "Server_Cmd";
new const VERSION[] = "1.0";
new const AUTHOR[] = "By.KinG";
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR);
RegisterHookChain(RG_RoundEnd, "RoundEnd"); //El Bitimini Algılar
}
public RoundEnd()
{
server_cmd("amx_cvar sv_restart 1"); //El Bittiğinde Servere Restart Atar
}
)


