public OnPlayerText(playerid, text[]) { if(pInfo[playerid][Admin] >= 1) { new str[128]; format(str, 128, \"[Admin]%s: %s\", GetName(playerid), text); SendClientMessageToAll(COLOR_ORANGE, string); return 0; } if(pInfo[playerid][VIP] >= 1) { new str[130]; format(str, 130, \"[VIP]%s: %s\", GetName(playerid), text); SendClientMessageToAll(COLOR_YELLOW, str); return 0; } } return 1; }
#define FILTERSCRIPT#include <a_samp>#if defined FILTERSCRIPTpublic OnPlayerText(playerid, text[]){if(pInfo[playerid][Admin] >= 1){ new str[128]; format(str, 128, \"[Admin]%s: %s\", GetName(playerid), text); SendClientMessageToAll(COLOR_ORANGE, string); return 0;}if(pInfo[playerid][VIP] >= 1){new str[130]; format(str, 130, \"[VIP]%s: %s\", GetName(playerid), text);SendClientMessageToAll(COLOR_YELLOW, str); return 0;}return 1;}#endif
D:\\GTA modok\\Mod\\mod\\Maddddd\\Mad\\régi\\régi\\pawno\\new.pwn(13) : error 017: undefined symbol \"pInfo\"D:\\GTA modok\\Mod\\mod\\Maddddd\\Mad\\régi\\régi\\pawno\\new.pwn(13) : warning 215: expression has no effectD:\\GTA modok\\Mod\\mod\\Maddddd\\Mad\\régi\\régi\\pawno\\new.pwn(13) : error 001: expected token: \";\", but found \"]\"D:\\GTA modok\\Mod\\mod\\Maddddd\\Mad\\régi\\régi\\pawno\\new.pwn(13) : error 029: invalid expression, assumed zeroD:\\GTA modok\\Mod\\mod\\Maddddd\\Mad\\régi\\régi\\pawno\\new.pwn(13) : fatal error 107: too many error messages on one lineCompilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 4 Errors.
1. #define FILTERSCRIPT 2. 3. #include <a_samp> 4. #if defined FILTERSCRIPT 5. public OnPlayerText(playerid, text[]) 6. { 7. if(pInfo[playerid][Admin] >= 1) 8. { 9. new str[128]; 10. format(str, 128, \"[Admin]%s: %s\", GetName(playerid), text); 11. SendClientMessageToAll(COLOR_ORANGE, string); 12. return 0; 13. } 14. if(pInfo[playerid][VIP] >= 1) 15. { 16. new str[130]; 17. format(str, 130, \"[VIP]%s: %s\", GetName(playerid), text); 18. SendClientMessageToAll(COLOR_YELLOW, str); 19. return 0; 20. } 21. return 1; 22. } 23. #endif 24.
ok akkor ki rakom javítva kóddal 1. #define FILTERSCRIPT 2. 3. #include <a_samp> 4. #if defined FILTERSCRIPT 5. public OnPlayerText(playerid, text[]) 6. { 7. if(pInfo[playerid][Admin] >= 1) 8. { 9. new str[128]; 10. format(str, 128, \"[Admin]%s: %s\", GetName(playerid), text); 11. SendClientMessageToAll(COLOR_ORANGE, string); 12. return 0; 13. } 14. if(pInfo[playerid][VIP] >= 1) 15. { 16. new str[130]; 17. format(str, 130, \"[VIP]%s: %s\", GetName(playerid), text); 18. SendClientMessageToAll(COLOR_YELLOW, str); 19. return 0; 20. } 21. return 1; 22. } 23. #endif 24.
Error D:\\GTA modok\\Mod\\mod\\Maddddd\\Mad\\régi\\régi\\pawno\\new.pwn(13) : error 017: undefined symbol \"pInfo\"D:\\GTA modok\\Mod\\mod\\Maddddd\\Mad\\régi\\régi\\pawno\\new.pwn(13) : warning 215: expression has no effectD:\\GTA modok\\Mod\\mod\\Maddddd\\Mad\\régi\\régi\\pawno\\new.pwn(13) : error 001: expected token: \";\", but found \"]\"D:\\GTA modok\\Mod\\mod\\Maddddd\\Mad\\régi\\régi\\pawno\\new.pwn(13) : error 029: invalid expression, assumed zeroD:\\GTA modok\\Mod\\mod\\Maddddd\\Mad\\régi\\régi\\pawno\\new.pwn(13) : fatal error 107: too many error messages on one lineCompilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 4 Errors.
de clima.... Akkor fog mûködni ha õ így kérdezi le hogy admin ahogy te oda írtad... ahhoz hogy meglehessen neki írni kéne az is hogy hogyan kérdezi azt le hogy admin-e és utána már gyerek játék.
public OnPlayerText(playerid, text[]) { new szChatMessage[144];if(/*ide a saját lekérdezésed hogy admin-e*/) format(szChatMessage,sizeof (szChatMessage),\"[Admin]{%06x}%s{007f9c}(%d): {ffffff}%s\", GetPlayerColor(playerid) >>> 8, pName(playerid), playerid, text);else { if(/*Ide a saját lekérdezésed hogy V.I.P.-e*/) format(szChatMessage,sizeof (szChatMessage),\"[Vip]{%06x}%s{007f9c}(%d): {ffffff}%s\", GetPlayerColor(playerid) >>> 8, pName(playerid), playerid, text); else format(szChatMessage,sizeof (szChatMessage),\"{%06x}%s{007f9c}(%d): {ffffff}%s\", GetPlayerColor(playerid) >>> 8, pName(playerid), playerid, text);}SendClientMessageToAll(-1, szChatMessage); return 0;}stock pName(playerid) {new name[24];GetPlayerName(playerid,name,24);return name;}