Ez a szekció lehetővé teszi a felhasználó által írt összes hozzászólás megtekintését. Vedd figyelembe, hogy csak azokba a fórumokba írt hozzászólásokat látod, amelyekhez hozzáférésed van.
Üzenetek - ZSOLTI99
Oldalak: 1 ... 86 87 [88] 89 90 ... 117
1306
« Dátum: 2013. július 16. - 19:32:35 »
Valaki tudna segíteni ezt az animot berakni ? LoopingAnim(playerid,\"CAR\", \"Fixn_Car_Loop\", 4.0, 1, 0, 0, 0, 0);
1307
« Dátum: 2013. július 16. - 11:02:45 »
kösz
1308
« Dátum: 2013. július 16. - 10:55:32 »
1309
« Dátum: 2013. július 15. - 19:35:48 »
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 effect D:\\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 zero D:\\GTA modok\\Mod\\mod\\Maddddd\\Mad\\régi\\régi\\pawno\\new.pwn(13) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 4 Errors.
1310
« Dátum: 2013. július 15. - 19:30:32 »
[HUN]Petya0116 editolta
1311
« Dátum: 2013. július 15. - 19:18:20 »
Jó csak az a baj mikor karakert választok akkor nem látszódik a karakter már elõtte el kéne tûnni
1312
« Dátum: 2013. július 15. - 19:02:44 »
Hello. Csináltam egy login képet de nem tûnt el mikor le spawnoltam magam valaki tud segíteni? #include <a_samp> new Text:Textdraw0; new Text:Textdraw1; public OnFilterScriptInit() { print(\"Textdraw file generated by\"); print(\" Zamaroht\'s textdraw editor was loaded.\"); // Create the textdraws Textdraw0 = TextDrawCreate(0.000000, 0.000000, \"loadsc8:loadsc8\"); TextDrawBackgroundColor(Textdraw0, 255); TextDrawFont(Textdraw0, 4); TextDrawLetterSize(Textdraw0, 0.500000, 1.000000); TextDrawColor(Textdraw0,-1); TextDrawSetOutline(Textdraw0, 0); TextDrawSetProportional(Textdraw0, 1); TextDrawSetShadow(Textdraw0, 1); TextDrawUseBox(Textdraw0, 1); TextDrawBoxColor(Textdraw0, 255); TextDrawTextSize(Textdraw0, 641.000000, 448.000000); Textdraw1 = TextDrawCreate(401.0, 432.0, \"/cmds /rescue /rules /admins\"); TextDrawBackgroundColor(Textdraw1, 0x000000FF); TextDrawFont(Textdraw1, 0); TextDrawBoxColor(Textdraw0, 255); TextDrawLetterSize(Textdraw1, 0.5199, 1.3999); TextDrawColor(Textdraw0,-1); TextDrawSetOutline(Textdraw0, 0); TextDrawSetOutline(Textdraw1, 1); TextDrawSetProportional(Textdraw1, true); return 1; } /* for(new i; i < MAX_PLAYERS; i ++) { if(IsPlayerConnected(i)) { TextDrawShowForPlayer(i, Textdraw0); TextDrawShowForPlayer(i, Textdraw1); } } return 1; }*/ public OnFilterScriptExit() { TextDrawHideForAll(Textdraw0); TextDrawDestroy(Textdraw0); TextDrawHideForAll(Textdraw1); TextDrawDestroy(Textdraw1); return 1; } public OnPlayerConnect(playerid) { TextDrawShowForPlayer(playerid, Textdraw0); TextDrawShowForPlayer(playerid, Textdraw1); return 1; }
1313
« Dátum: 2013. július 15. - 18:08:33 »
Hello. Valaki tudna nekem segíteni animot beépíteni a /assist parancsba mikor beírja /assist akkor a a jármû alá fekszik egy ami egy anim és mikor javítja a jármûvet akkor számolna valami idõzítõ pl 100 ppc-be kellene COMMAND:assist(playerid, params[]) { // Setup local variables new bool:AssistOnline = false, Msg[128], Name[24]; // Send the command to all admins so they can see it SendAdminText(playerid, \"/assist\", params); // Check if the player has logged in if (APlayerData[playerid][LoggedIn] == true) { // Get the player\'s name GetPlayerName(playerid, Name, sizeof(Name)); // Preset the message that needs to be sent to assistance players format(Msg, 128, \"{00FF00}Játékos {FFFF00}%s{00FF00} automentõt hivott,siess oda.\", Name); // Check if there is at least one assistance player online for (new i; i < MAX_PLAYERS; i++) { // Check if this player is connected if (IsPlayerConnected(i)) { // Check if this player is assistance class if (APlayerData[PlayerClass] == ClassAssistance) { // Set the flag to indicate that at least one assistance player is online AssistOnline = true; // Send the assistance player a message to inform him who needs assistance SendClientMessage(i, 0xFFFFFFFF, Msg); } } } // Check if there is at least one assistance player online if (AssistOnline == true) { // Set yourself as \"AssistanceNeeded\" APlayerData[playerid][AssistanceNeeded] = true; // Let the player know he called for assistance SendClientMessage(playerid, 0xFFFFFFFF, \"{00FF00}Már hívott segítséget\"); } else // No assistance is online { // Check if the player is the driver of a vehicle if (GetPlayerVehicleSeat(playerid) == 0) { // Fully repair the vehicle (damage value and bodywork) RepairVehicle(GetPlayerVehicleID(playerid)); // Also re-fuel the vehicle AVehicleData[GetPlayerVehicleID(playerid)][Fuel] = MaxFuel; // Let the player pay for the repairs and refuel (default $2000) RewardPlayer(playerid, -2000, 0); // Let the player know he spent $2000 for auto-repair because there were no assistance players online SendClientMessage(playerid, 0xFFFFFFFF, \"Jármûvedet megjavitottuk és megtankoltuk $2000\"); SendClientMessage(playerid, 0xFFFFFFFF, \"Szerveren nincs most automentõ\"); } } } else return 0; // Let the server know that this was a valid command return 1; }
Elõre is köszönöm a segítséget!
1314
« Dátum: 2013. július 15. - 12:32:02 »
Nem lesz magyarba?
1315
« Dátum: 2013. július 15. - 11:01:55 »
Cseréld le a streamer.inc és a streamer plugint
1316
« Dátum: 2013. július 13. - 09:37:12 »
Oké kösz mindent mûködik
1317
« Dátum: 2013. július 12. - 19:12:12 »
Kösz mûködik és még annyi lenne mi a legkissebb idõzítõ szám?
1318
« Dátum: 2013. július 12. - 16:02:36 »
Itt erre jelszi a hibát public ujTimer2(playerid) { BanEx(playerid); //Kick(playerid); return 1; } ez a 4796 sor
1319
« Dátum: 2013. július 12. - 11:06:31 »
Óóó zseni vagy mûködik is akkor meg is csinálom a többit köszönöm szépen Dupla hozzászólás automatikusan összefûzve. ( 2013. július 12. - 11:41:59 )
D:\\GTA modok\\Mod\\Maddddd\\Mad\\régi\\régi\\pawno\\include\\PPC_PlayerCommands.inc(4796) : warning 202: number of arguments does not match definition Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 4 Warnings.
kaptam egy warningot mit lehetne vele kezdeni? forward ujTimer2(playerid); // Bans a player by his ip COMMAND:ipban(playerid, params[]) { // Setup local variables new PlayerToBan, Reason[128], Msg[128], Name[24], AdminName[24]; // Send the command to all admins so they can see it SendAdminText(playerid, \"/ipban\", params); // Check if the player has logged in if (APlayerData[playerid][LoggedIn] == true) { // Check if the player\'s admin-level is at least 3 if (APlayerData[playerid][PlayerLevel] >= 3) { if (sscanf(params, \"us[128]\", PlayerToBan, Reason)) SendClientMessage(playerid, 0xFF0000AA, \"Használd: \\\"/ipban <PlayerToBan> <Reason>\\\"\"); else { if (IsPlayerConnected(PlayerToBan)) { // Get the names of the player and the admin who executed the ban GetPlayerName(playerid, AdminName, sizeof(AdminName)); GetPlayerName(PlayerToBan, Name, sizeof(Name)); // Inform the player about his ban format(Msg, 128, \"{FF0000}A te IP címed bannolva lett by {FFFF00}%s\", AdminName); SendClientMessage(PlayerToBan, 0xFFFFFFFF, Msg); format(Msg, 128, \"{FF0000}Reason: {FFFF00}%s\", Reason); SendClientMessage(PlayerToBan, 0xFFFFFFFF, Msg); SetTimerEx(\"ujTimer2\",1000,0,\"i\",PlayerToBan); // Ban the player with a reason // Inform everybody else which player was ip-banned format(Msg, 128, \"{808080}%s %s has ip-banned {FFFF00}%s\", AdminLevelName[APlayerData[playerid][PlayerLevel]], AdminName, Name); SendClientMessageToAll(0xFFFFFFFF, Msg); } } } else return 0; } else return 0; return 1; } public ujTimer2(playerid) { BanEx(playerid); //Kick(playerid); return 1; }
1320
« Dátum: 2013. július 11. - 18:33:05 »
De ha ezt berakom akkor kapok 1 errort tudnál írni egy példát?
Oldalak: 1 ... 86 87 [88] 89 90 ... 117
|