AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   ( Requests ) help ! (https://forums.alliedmods.net/showthread.php?t=173430)

samer 123 12-05-2011 00:34

( Requests ) help !
 
i made code for my plugin but when i want to compile it .. tell me there are a many errors....
This is the Code :
PHP Code:

/* Plugin generated by AMXX-Studio */

#include <colorchat>
#include <amxmodx>
#include <amxmisc>

#define PLUGIN "Info"
#define VERSION "1.0"
#define AUTHOR "Abo-Zanih"



public plugin_init()
 {
    
    
register_clcmd("say /eamil""eamil")
    
register_clcmd("say /eamil""abo")
    
register_clcmd("say /eamil""website")
    
register_clcmd("say admin""eamil")
    
register_clcmd("say admin""abo")
    
register_clcmd("say admin""website")


}

public 
eamil(id)
{
    new 
userName[33]
    
    
get_user_name(idname32)
    
ColorChat(0GREEN"^x04 The OwnerAdmin Eamils : Skype: Algeeria.net , Hotmail : [email protected]")
}
public 
Abo(id)
{
    new 
userName[33]
    
    
get_user_name(idname32)
    
ColorChat(clientGREEN"^x04 Abo Zanih Eamils: Skype : samer_cs95 , Hotmail : [email protected]")
}
public 
website(id)
{
    new 
userName[33]
    
    
get_user_name(idname32)
    
ColorChat(clientGREEN"^x04 Please Vist Our Page : Www.deamondz.com")


note : i compile it from :addons\amxmodx\scripting\compile.exe... and i have color include in my files

Splot 12-05-2011 00:57

Re: ( Requests ) help !
 
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(idGREEN"^x04 The OwnerAdmin Eamils : Skype: Algeeria.net , Hotmail : [email protected]")
    
ColorChat(idGREEN"^x04 Abo Zanih Eamils: Skype : samer_cs95 , Hotmail : [email protected]"
    
ColorChat(idGREEN"^x04 Please Vist Our Page : Www.deamondz.com")



samer 123 12-05-2011 07:00

Re: ( Requests ) help !
 
Thnx :D


All times are GMT -4. The time now is 20:48.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.