Pm Npc xD - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Pm Npc xD (
/showthread.php?tid=247607)
Pm Npc xD -
wheelman_WM - 10.04.2011
Hello i want pm command !
And also this
when a player pm npc he get a auto reply in pm bla bla
example
npc id : 1
players : /pm 1 Hey Bot
Autoreply in pm : Hey sry i m busy talk to you later
Like This
Anyone plz help
Re: Pm Npc xD -
Gray - 10.04.2011
i saw this in FS forum
why dont u check it out ?
Re: Pm Npc xD -
MyLife - 10.04.2011
Try...
pawn Код:
// PM Command from base script
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(IsPlayerNPC(id)) {
SendClientMessage(playerid,PM_INCOMING_COLOR,"BOT:Hey sry i m busy talk to you later");
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;
}
Re: Pm Npc xD -
wheelman_WM - 10.04.2011
i try and got these error
Код:
C:\Users\Bhupesh\Desktop\my new\Gamemodes\lvdm.pwn(928) : error 017: undefined symbol "tmp"
C:\Users\Bhupesh\Desktop\my new\Gamemodes\lvdm.pwn(930) : error 017: undefined symbol "tmp"
C:\Users\Bhupesh\Desktop\my new\Gamemodes\lvdm.pwn(935) : error 017: undefined symbol "tmp"
C:\Users\Bhupesh\Desktop\my new\Gamemodes\lvdm.pwn(936) : error 017: undefined symbol "gMessage"
C:\Users\Bhupesh\Desktop\my new\Gamemodes\lvdm.pwn(936) : error 017: undefined symbol "strrest"
C:\Users\Bhupesh\Desktop\my new\Gamemodes\lvdm.pwn(938) : error 017: undefined symbol "gMessage"
C:\Users\Bhupesh\Desktop\my new\Gamemodes\lvdm.pwn(952) : error 017: undefined symbol "iName"
C:\Users\Bhupesh\Desktop\my new\Gamemodes\lvdm.pwn(952) : error 017: undefined symbol "iName"
C:\Users\Bhupesh\Desktop\my new\Gamemodes\lvdm.pwn(952) : error 029: invalid expression, assumed zero
C:\Users\Bhupesh\Desktop\my new\Gamemodes\lvdm.pwn(952) : fatal error 107: too many error messages on one line
Re: Pm Npc xD -
MyLife - 10.04.2011
= =" Sry...
My mistake.
pawn Код:
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");
return 1;
}
if(IsPlayerNPC(id)) {
SendClientMessage(playerid,PM_INCOMING_COLOR,"BOT:Hey sry i m busy talk to you later");
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;
}
return 0;
}
//Edit : forgot
Re: Pm Npc xD -
wheelman_WM - 10.04.2011
stilll may pawno full of errors
Re: Pm Npc xD -
alpha500delta - 10.04.2011
Quote:
Originally Posted by wheelman_WM
stilll may pawno full of errors
|
You could try to fix them yourself you know...