Info Script per mandare pm

colellinho

Nuovo utente
Autore del topic
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
 
Aggiungi questo script sotto la voce del public OnPlayerCommandText:
Perfavore, Entra oppure Registrati per vedere i Link!


Dovrebbe funzionare, in caso contrario domanda pure per qualsiasi problema.

CIAO!
 
Ultima modifica:
non è una parte indispensabile dello script, anzi non serve proprio a niente. quindi può toglierla.
Tu piuttosto sei pregato di tornare a giocare con le bambole, hai appena 12 anni e vuoi insegnare agli altri...

Ho voluto semplicemente aiutare, tu fatti gli affari tuoi, mocciosetto


Ne dovrà passare di tempo prima che uno come te possa insegnare a uno come me ^^
 
Lee,evitiamo i flame.
Qui nessuno è superiore a nessun'altro.
Comunque
}
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;
}
^^
http://www.sciax2.it/forum/assistenza-tecnica/script-per-mandare-pm-252219.html