i am in the process of trying to make a plugin that gives every one deagles when they join and its not working can some one tell me what i have done rong?
Code:
#include <amxmodx>
#include <fun>
#include <engine>
//
public plugin_init()
{
register_plugin("Dealge Giver","1.0","adam3232")
}
public client_putinserver(id)
{
give_item(0,"14")
}
__________________