Szerző Téma: /pm parancs  (Megtekintve 1511 alkalommal)

/pm parancs
« Dátum: 2011. Április 05. - 15:20:07 »
0 Show voters
Sziasztok!
Ide letudjátok irni a pm parancsot egy kis magyarázattal?
megköszönném.
üdv

Nem elérhető Turbo

  • 156
    • Profil megtekintése
/pm parancs
« Válasz #1 Dátum: 2011. Április 05. - 15:34:19 »
0 Show voters
#include <a_samp>
#define ADMINFS_MESSAGE_COLOR 0xFF444499
#define PM_INCOMING_COLOR     0xFFFF22AA
#define PM_OUTGOING_COLOR     0xFFCC2299
//------------------------------------------------
public OnFilterScriptInit()
{
print(\"\\n--Base FS loaded.\\n\");
return 1;
}
//------------------------------------------------
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(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;
}
stock strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= \' \'))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (string[index] > \' \') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
stock strrest(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= \' \'))
{
index++;
}
new offset = index;
new result[128];
while ((index < length) && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}

 
Csak le kell magyarosítani.. :D

Nem elérhető ZeRo

  • 4620
  • Ex Globális Moderátor
    • Profil megtekintése
/pm parancs
« Válasz #2 Dátum: 2011. Április 05. - 15:43:51 »
0 Show voters
Egy hatékonyabb megoldás: http://sampforum.hu/index.php?topic=4400.0
A leírás legvégén van maga a pm parancs( példa ). De ha meg akarod érteni ezt a módot, nem árt, ha elolvasod. ;)

Nem elérhető Turbo

  • 156
    • Profil megtekintése
/pm parancs
« Válasz #3 Dátum: 2011. Április 05. - 15:46:26 »
0 Show voters
Hatékonyabb. :D
De õ egy PM parancsot kért. :angel:

Nem elérhető ZeRo

  • 4620
  • Ex Globális Moderátor
    • Profil megtekintése
/pm parancs
« Válasz #4 Dátum: 2011. Április 05. - 15:48:22 »
0 Show voters
Idézetet írta: Turbo date=1302011186\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"7321\" data-ipsquote-contentclass=\"forums_Topic
Hatékonyabb. :D
De õ egy PM parancsot kért. :angel:
 
Ha már megír egy parancsot, az miért ne legyen hatékony/gyors? És ezzel, hogy elolvassa a fenti leírást, esélyt kap rá, hogy az összes parancsát azzal a módszerrel írja meg, ez végeredményben pedig egy összességében hatékonyabb, és gyorsabb játékmódot, azaz kisebb laggot fog okozni.

/pm parancs
« Válasz #5 Dátum: 2011. Április 05. - 15:51:32 »
0 Show voters
Zeronak igaza van! De mind a 2 nek köszönöm!

/pm parancs
« Válasz #6 Dátum: 2011. Április 05. - 15:54:40 »
0 Show voters
Idézetet írta: DareDevil date=1302011492\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"7321\" data-ipsquote-contentclass=\"forums_Topic
Zeronak igaza van! De mind a 2 nek köszönöm!
 
Ha választ kaptál,akkor az oldal bal alján lévõ megfelelõ gombbal legközelebb zárd a témát.

 

SimplePortal 2.3.7 © 2008-2024, SimplePortal