public OnPlayerText(playerid, text[]){ if(IsPlayerAdmin(playerid) && GetPVarInt(playerid, \"Aszolgalat\") == 1) { new str[128]; format(str, sizeof str, \"[RCON-Admin] %s %s:\", GetName(playerid), text); SendPlayerMessageToAll(playerid, str); } return 1;}
public OnPlayerText(playerid, text[]){ if(IsPlayerAdmin(playerid) && GetPVarInt(playerid, \"Aszolgalat\") == 1) { new str[128]; format(str, sizeof str, \"[RCON-Admin] %s: %s\", GetName(playerid), text); SendPlayerMessageToAll(playerid, str); } return 0;}
public OnPlayerText(playerid, text[]){ if(IsPlayerAdmin(playerid) && GetPVarInt(playerid, \"Aszolgalat\") == 1) { new str[128]; format(str, sizeof str, \"[RCON-Admin] %s: %s\", GetName(playerid), text); SendPlayerMessageToAll(playerid, str); } return 0;Most csak annyi a baj hogy így írja a chatfalba hogy:Boss:[RCONAdmin}Boss: ......Így kéne hogy[RCONAdmin]Boss: Tehát az elejére nem kéne a név.}
public OnPlayerText(playerid, text[]){ if(IsPlayerAdmin(playerid) && GetPVarInt(playerid, \"Aszolgalat\") == 1) { new str[128]; format(str, sizeof str, \"[RCON-Admin] %s: %s\", GetName(playerid), text); SendPlayerMessageToAll(0x27f508AA, str); } return 0;}
public OnPlayerText(playerid, text[]){ if(IsPlayerAdmin(playerid) && GetPVarInt(playerid, \"Aszolgalat\") == 1) { new str[128]; format(str, sizeof str, \"[RCON-Admin] %s: %s\", GetName(playerid), text); SendPlayerMessageToAll(playerid, str); return 0; } return 1;}
CMD:aduty(playerid, params[]){new string[22], anev[MAX_PLAYER_NAME];GetPlayerName(playerid, anev, sizeof(anev));format(string, sizeof(string),\"[RCON-Admin]%s\", anev);SetPlayerName(playerid, string);SetPVarInt(playerid, \"Aszolgalat\", 1);return 1;}CMD:adutyoff(playerid, params[]){new string[22], anev[MAX_PLAYER_NAME];GetPlayerName(playerid, anev, sizeof(anev));format(string, sizeof(string),\"%s\", anev);SetPlayerName(playerid, string);SetPVarInt(playerid, \"Aszolgalat\", 0);return 1;}
#define feher (0xFFFFFFAA)public OnPlayerText(playerid, text[]){ if(IsPlayerAdmin(playerid) && GetPVarInt(playerid, \"Aszolgalat\") == 1) { new string[128]; new pName[MAX_PLAYER_NAME]; GetPlayerName(playerid, pName, sizeof(pName)); format(string, sizeof(string), \"[RCON-Admin] %s: %s\", pName, text); SendClientMessageToAll(feher, string); return 0; //Nem hiszem, hogy kéne, ha nem megy, próbáld ki nélküle } return 0;} Állítólag így mûködni kéne, az én szerverembe is van egy rangrendszer, vagyis ha elér egy adott pontot, akkor megkapja az adott rangot, és a neve elé ki lesz írva a rangja, és úgy írhat.Ha nem jó, akkor nem tudom mi a hiba.
#define feher (0xFFFFFFAA)public OnPlayerText(playerid, text[]){ if(IsPlayerAdmin(playerid) && GetPVarInt(playerid, \"Aszolgalat\") == 1) { new string[128]; new pName[MAX_PLAYER_NAME]; GetPlayerName(playerid, pName, sizeof(pName)); format(string, sizeof(string), \"[RCON-Admin] %s: %s\", pName, text); SendClientMessageToAll(feher, string); return 0; //Nem hiszem, hogy kéne, ha nem megy, próbáld ki nélküle } return 0;}