19.07.2015, 19:59
How To make /ad Command ?
By Using[ZCMD]
By Using[ZCMD]
#define COLOR_LIME 0x10F441AA //(at the top of the script)
CMD:ad(playerid, params[])
{
new string[128], name[64] ;
GetPlayerName(playerid, name, sizeof(name));
if(sscanf(params, "s[128]", params)) return SendClientMessage(playerid, COLOR_GREY, "USAGE: /ad [Text]");
format(string, sizeof(string), "[Advertisement] %s Contact: %s", params,name);
SendClientMessageToAll(COLOR_LIME, string);
GivePlayerMoney(playerid, -100000);
}
return 1;
}
C:\Users\ma\Desktop\test.pwn(3821) : warning 217: loose indentation C:\Users\ma\Desktop\test.pwn(3823) : warning 209: function "cmd_ad" should return a value C:\Users\ma\Desktop\test.pwn(3824) : error 010: invalid function or declaration Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error |
#define COLOR_LIME 0x10F441AA //(at the top of the script)
CMD:ad(playerid, params[])
{
new string[128], name[64] ;
GetPlayerName(playerid, name, sizeof(name));
if(sscanf(params, "s[128]", params)) return SendClientMessage(playerid, COLOR_GREY, "USAGE: /ad [Text]");
format(string, sizeof(string), "[Advertisement] %s Contact: %s", params,name);
SendClientMessageToAll(COLOR_LIME, string);
GivePlayerMoney(playerid, -100000);
return 1;
}
CMD:ad(playerid, params[]) { new string[128], name[64] ; GetPlayerName(playerid, name, sizeof(name)); if(sscanf(params, "s[128]", params)) return SendClientMessage(playerid, COLOR_RED, "USAGE: /ad [Text]"); format(string, sizeof(string), "[AD] %s : %s", params,name); SendClientMessageToAll(COLOR_ADUTY, string); return 1; } |
C:\Users\ma\Desktop\test.pwn(3821) : warning 217: loose indentation C:\Users\ma\Desktop\test.pwn(3823) : warning 209: function "cmd_ad" should return a value C:\Users\ma\Desktop\test.pwn(3824) : error 010: invalid function or declaration Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error |