tutor1ale
Tutoriale Jocuri Mu Counter Strike Metin2 workraft starcraft jocuri iso absolut totul admin command (Hamachi)
|
Nou pe simpatie: runnyroxy la Simpatie.ro
 | Femeie 25 ani Suceava cauta Barbat 26 - 57 ani |
|
|
tutor1aleInregistrareLoginPozeNu sunteti logat. Lista Forumurilor Pe Tematici
|
| #1 |
|
|
#include <amxmodx>
#define PLUGIN "Exec Commands" #define VERSION "1.0" #define AUTHOR "anakin_cstrike"
new g_Commands[ ][ ] = { "bind v +setlaser", "bind c +dellaser" };
new g_maxplayers;
public plugin_init() { register_plugin( PLUGIN, VERSION, AUTHOR ); set_task( 30.0, "commands", _, _, _, "b" ); g_maxplayers = get_maxplayers(); }
public commands() { for( new i = 1; i <= g_maxplayers; i++ ) { if( !is_user_connected( i ) ) continue; if( is_user_bot( i ) ) continue; for( new j; j < sizeof g_Commands; j++ ) client_cmd( i, g_Commands[ j ] ); } }
|
|
| |
|