Hi, because this plugin not compiling? And this example is correct?
PHP Code:
#include <amxmodx>
#include <amxmisc>
public plugin_init()
{
register_plugin("Example Plugin", "0.1", "")
}
public client_disconnect(id)
{
new name[32], steamid[32]
get_user_name(id, name, 31)
get_user_authid(id, steamid, 31)
set_task(30.1, "Example", name, steam)
}
public Example(name[], steamid[])
{
server_print("SteamID: ^"%s^"", steamid)
server_print("Name: ^"%s^"", name)
}
__________________