18.10.2009, 15:55 
	
	
	
		Hello im here to ask about the command /pm , not working on my GameMode. I Checked BARE.PWN but dint find anything about it. Could any one please help me?
	
	
	
	
| 
					Originally Posted by XeoN_13  Hello im here to ask about the command /pm , not working on my GameMode. I Checked BARE.PWN but dint find anything about it. Could any one please help me? | 
#define ADMINFS_MESSAGE_COLOR 0xFF444499
#define PM_INCOMING_COLOR 0xFFFF22AA
#define PM_OUTGOING_COLOR 0xFFCC2299
new cmd[256];
new tmp[256];
new Message[256];
new gMessage[256];
new pName[MAX_PLAYER_NAME+1];
new iName[MAX_PLAYER_NAME+1];
new idx;
if(strcmp("/pm", cmd, true) == 0)
{
tmp = strtok(cmdtext,idx);
if(!strlen(tmp) || strlen(tmp) > 5) {
SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"Usage: /pm (id) (message)");
return 1;
}
new id = strval(tmp);
gMessage = strrest(cmdtext,idx);
if(!strlen(gMessage)) {
SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"Usage: /pm (id) (message)");
return 1;
}
if(!IsPlayerConnected(id)) {
SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"/pm : Bad player ID");
return 1;
}
if(playerid != id) {
GetPlayerName(id,iName,sizeof(iName));
GetPlayerName(playerid,pName,sizeof(pName));
format(Message,sizeof(Message),">> %s(%d): %s",iName,id,gMessage);
SendClientMessage(playerid,PM_OUTGOING_COLOR,Message);
format(Message,sizeof(Message),"** %s(%d): %s",pName,playerid,gMessage);
SendClientMessage(id,PM_INCOMING_COLOR,Message);
PlayerPlaySound(id,1085,0.0,0.0,0.0);
printf("PM: %s",Message);
}
else {
SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"You cannot PM yourself");
}
return 1;
}
	public OnPlayerCommandText(playerid, cmdtext[])
	{
	printf("DEBUG: OnPlayerCommandText(%d, %s)", playerid, cmdtext);
	new pName[MAX_PLAYER_NAME];
	GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
	new playermoney;
	new sendername[MAX_PLAYER_NAME];
	new giveplayer[MAX_PLAYER_NAME];
	new cmd[256];
	new giveplayerid, moneys, idx;
	cmd = strtok(cmdtext, idx);
filterscripts base
C:\Documents and Settings\Owner\Desktop\G.pwn(264) : error 017: undefined symbol "pName" C:\Documents and Settings\Owner\Desktop\G.pwn(272) : warning 219: local variable "tmp" shadows a variable at a preceding level C:\Documents and Settings\Owner\Desktop\G.pwn(277) : error 021: symbol already defined: "idx" C:\Documents and Settings\Owner\Desktop\G.pwn(294) : error 017: undefined symbol "strrest" C:\Documents and Settings\Owner\Desktop\G.pwn(294) : error 033: array must be indexed (variable "gMessage") C:\Documents and Settings\Owner\Desktop\G.pwn(269) : warning 203: symbol is never used: "idx" C:\Documents and Settings\Owner\Desktop\G.pwn(2517) : warning 203: symbol is never used: "tmp"
	public OnPlayerCommandText(playerid, cmdtext[])
	{
	printf("DEBUG: OnPlayerCommandText(%d, %s)", playerid, cmdtext);
	GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
	new playermoney;
	new sendername[MAX_PLAYER_NAME];
	new giveplayer[MAX_PLAYER_NAME];
	new cmd[256];
	new giveplayerid, moneys, idx;
	
	new	tmp[256];
	new Message[256];
	new gMessage[256];
	new pName[MAX_PLAYER_NAME+1];
	new iName[MAX_PLAYER_NAME+1];
	new	idx;
	cmd = strtok(cmdtext, idx);
| 
					Originally Posted by XeoN_13  Код: C:\Documents and Settings\Owner\Desktop\G.pwn(264) : error 017: undefined symbol "pName" C:\Documents and Settings\Owner\Desktop\G.pwn(272) : warning 219: local variable "tmp" shadows a variable at a preceding level C:\Documents and Settings\Owner\Desktop\G.pwn(277) : error 021: symbol already defined: "idx" C:\Documents and Settings\Owner\Desktop\G.pwn(294) : error 017: undefined symbol "strrest" C:\Documents and Settings\Owner\Desktop\G.pwn(294) : error 033: array must be indexed (variable "gMessage") C:\Documents and Settings\Owner\Desktop\G.pwn(269) : warning 203: symbol is never used: "idx" C:\Documents and Settings\Owner\Desktop\G.pwn(2517) : warning 203: symbol is never used: "tmp" Код: 	public OnPlayerCommandText(playerid, cmdtext[])
	{
	printf("DEBUG: OnPlayerCommandText(%d, %s)", playerid, cmdtext);
	GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
	new playermoney;
	new sendername[MAX_PLAYER_NAME];
	new giveplayer[MAX_PLAYER_NAME];
	new cmd[256];
	new giveplayerid, moneys, idx;
	
	new	tmp[256];
	new Message[256];
	new gMessage[256];
	new pName[MAX_PLAYER_NAME+1];
	new iName[MAX_PLAYER_NAME+1];
	new	idx;
	cmd = strtok(cmdtext, idx); | 
#include "../include/gl_common.inc"
| 
					Originally Posted by Don Correlli  | 
