PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New to scripting"
#define VERSION "1.0"
#define AUTHOR "AMX_ERR_BOUNDS"
//new Float:a=4.1
//new bool:a=true
new Lottery[6] = {0,1,2,3,4,5}
//new Float:Numbers[4] = {0.1,0.2,0.3,0.4,0.5}
public plugin_init() {
register_plugin( PLUGIN, VERSION, AUTHOR );
}
//client_print(0,print_chat,"%s Random numbers %n %d",Name,Authid);
public client_putinserver( id )
{
new Authid[35],Name[32];
get_user_authid( id, Authid,34 );
get_user_name( id, Name, 31 );
client_print(0, print_chat,"Name: %s | Authid: %s", Name, Authid );
client_print(0,print_chat,"%s Random numbers %n %d",Lottery,random(6));
}
ok but now it has
PHP Code:
stack/heap size 16384 bytes;estimated max usage=799 cells <3116 bytes>
I guess thats bad because on over plugins it dont say that and is my code right it compiles fine