- 1 Luglio 2010
- 7
- 0
- Miglior risposta
- 0
Ciao a tutti ho bisogno di uno script che faccia mandare pm, se qualcuno ce l'ha e puo postarlo ne sarei grado, va bene anche solo il codice pawno! Grazie
^^}
if(strcmp("/pm", cmd, true) == 0)
{
new Message[256];
new gMessage[256];
new pName[MAX_PLAYER_NAME+1];
new iName[MAX_PLAYER_NAME+1];
tmp = strtok(cmdtext,idx);
if(!strlen(tmp) || strlen(tmp) > 5) {
SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"USARE: /pm (id) (message)");
return 1;
}
new id = strval(tmp);
gMessage = bigstrtok(cmdtext,idx);
if(!strlen(gMessage)) {
SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"USARE: /pm (id) (message)");
return 1;
}
if(!IsPlayerConnected(id)) {
SendClientMessage(playerid,ADMINFS_MESSAGE_COLOR,"/pm : Admin non connesso");
return 1;
}
if(PlayerInfo[playerid][pAdmin] == 0 && PlayerInfo[playerid][pDonator] == 0)
{
SendClientMessage(playerid, COLOR_LIGHTRED, " Only Admin & Premium, Sorry !");
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,"Non puoi inviarti i PM a te stesso!");
}
return 1;
}
mi da solo un problema dice invalid symbol PMlog