|
Author
|
Message
|
|
BANNED
Join Date: Aug 2010
Location: palestine
|

12-06-2011
, 07:17
error.....
|
#1
|
i made plugin and no errors but not work in my server
this is the code :
PHP Code:
#include <amxmodx>
#include <colorchat>
#define PLUGIN "Info"
#define VERSION "1.0"
#define AUTHOR "Abo-Zanih"
public plugin_init(){
register_clcmd("say /eamil", "eamil")
register_clcmd("say admin", "eamil")
}
public eamil(id)
{
ColorChat(id, GREEN, "^x04 The OwnerAdmin Eamils : Skype: Algeeria.net , Hotmail : [email protected]")
ColorChat(id, GREEN, "^x04 Abo Zanih Eamils: Skype : samer_cs95 , Hotmail : [email protected]")
ColorChat(id, GREEN, "^x04 Please Vist Our Page : Www.deamondz.com")
}
public connectmessage(id)
{
if (!is_user_connected(id))
{
ColorChat(id, GREEN, "^x04 Say : /eamil or admin to show information :D")
}
}
|
|
|
|