Help with PM.
#1

Hello. If I do /pm it said I dont have a Command.

But this is all I have. Can anyone help??

Код:
public OnPlayerPrivmsg(playerid, recieverid, text[])
{
  if(Muted[playerid] == 1) {
  SendClientMessage(playerid, COLOR_RED, "You are Muted. You Cannot Use This Command");
  return 0;
  }
	if(pmsoff[recieverid] == 1) {
	SendClientMessage(playerid, COLOR_YELLOW, "That player is not accepting Private Messages at this time");
  return 0;
  }
	SpamStrings[playerid] ++;
	new pmsg[128];
	new pmsg1[128]
	new priname[32],prinamee[32];
	GetPlayerName(playerid,priname, sizeof(priname));
	GetPlayerName(recieverid,prinamee, sizeof(prinamee));
	format(pmsg, sizeof(pmsg), "[PM]%s(%i): %s",priname,playerid,text); 
    ircSay(EchoConnection, EchoChan,pmsg);
    SendClientMessage(recieverid, COLOR_YELLOW, pmsg);
	format(pmsg1, sizeof(pmsg1), "[PM]%s(%i): %s",prinamee,recieverid,text);
    SendClientMessage(playerid, COLOR_YELLOW, pmsg1);
	
	return 1;
}
Reply
#2

/pm and OnPlayerPrivmsg was removed in 0.3
Reply
#3

Use the base.pwn from the basic server package, It works =)
Reply
#4

Remove that and make a new private command
Reply
#5

Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
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;

cmd = strtok(cmdtext, idx);

// PM Command
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");
}

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;
}
here you go, the PM command from base.pwn
Reply
#6

Quote:
Originally Posted by Lexuss
Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
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;

cmd = strtok(cmdtext, idx);

// PM Command
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");
}

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;
}
here you go, the PM command from base.pwn
I Copied and paste it. But now I got errors.

Код:
C:\Users\Bouke\Desktop\Server\Server 1\gamemodes\lvrcr.pwn(5387) : error 017: undefined symbol "gMessage"
C:\Users\Bouke\Desktop\Server\Server 1\gamemodes\lvrcr.pwn(5387) : error 017: undefined symbol "strrest"
C:\Users\Bouke\Desktop\Server\Server 1\gamemodes\lvrcr.pwn(5389) : error 017: undefined symbol "gMessage"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


3 Errors.
Код:
8387:  gMessage = strrest(cmdtext,idx);

5389:  if(!strlen(gMessage)) {
Reply
#7

did you put these lines in the top of ur script near the other New?

Код:
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;
Reply
#8

Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
  dcmd(login,5,cmdtext); // because login has 5 characters
  dcmd(register,8,cmdtext); // because register has 8 characters
  new string[256];
	new cmd[256];
	new giveplayerid, idx;
	new tmp[256];
	new Message[256];
	new gMessage[256];

	cmd = strtok(cmdtext, idx);
	
	// PM Command
	if(strcmp("/pm", cmd, true) == 0)
	{
	tmp = strtok(cmdtext,idx);

	if(!strlen(tmp) || strlen(tmp) > 5) {
	SendClientMessage(playerid,COLOR_RED,"Usage: /pm (id) (message)");
	return 1;
	}

	new id = strval(tmp);
	gMessage[256] = strrest(cmdtext,idx);

	if(!strlen(gMessage)) {
	SendClientMessage(playerid,COLOR_RED,"Usage: /pm (id) (message)");
	return 1;
	}

	if(!IsPlayerConnected(id)) {
	SendClientMessage(playerid,COLOR_RED,"That ID is not online.");
	}
	new pName[MAX_PLAYER_NAME+1];
	new iName[MAX_PLAYER_NAME+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,COLOR_YELLOW,Message);
	format(Message,sizeof(Message),"** %s(%d): %s",pName,playerid,gMessage);
	SendClientMessage(id,COLOR_YELLOW,Message);
	PlayerPlaySound(id,1085,0.0,0.0,0.0);

	printf("PM: %s",Message);

	}
	else {
	SendClientMessage(playerid,COLOR_RED,"You cannot PM yourself");
	}
	return 1;
	}
ERRORS::

Код:
C:\Users\Bouke\Desktop\Server\Server 1\gamemodes\lvrcr.pwn(5389) : error 033: array must be indexed (variable "gMessage")
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Errors.
LINES::

Код:
5389: gMessage[256] = strrest(cmdtext,idx);
Reply
#9

Help please
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)