Jump to content

Exaton

Membru
  • Posts

    287
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Exaton

  1. Salut cum pot rezolva aceasta eroare cand? Warning: SetPlayerSkin 250 isn't a valid ped model. Doar cand intru pe server si imi da automat skin 0, cand imi dau respawn sau ma omor imi da skinul 250(daca il am pus) dar dupa relog imi da id 0 dc?
  2. pai da este in includ public OnDialogResponse(playerid) { , si in includ este hook OnDialogResponse(playerid) {
  3. Salut, am si eu o problema cand compileaz imi da asta, ma poate ajuta cnv va rog frumos C:\Users\User\Desktop\gm\gm\gamemodes\gm.pwn(26086) : warning 202: number of arguments does not match definition E:\pawno\include\YSI\y_utils.inc(232) : warning 201: redefinition of constant/macro (symbol "strcpy(%0,%1)") E:\pawno\include\YSI\y_hooks/impl.inc(479) : error 021: symbol already defined: "FW_OnGameModeInit" E:\pawno\include\YSI\y_hooks/impl.inc(511) : error 021: symbol already defined: "ScriptInit_OnGameModeExit" E:\pawno\include\YSI\y_hooks/impl.inc(612) : error 021: symbol already defined: "MP_OPC" E:\pawno\include\YSI\y_hooks/impl.inc(655) : error 021: symbol already defined: "SSCANF_OnPlayerDisconnect" E:\pawno\include\YSI\y_hooks/impl.inc(704) : error 021: symbol already defined: "OnPlayerSpawn" E:\pawno\include\YSI\y_hooks/impl.inc(747) : error 021: symbol already defined: "OnPlayerDeath" E:\pawno\include\YSI\y_hooks/impl.inc(792) : error 021: symbol already defined: "OnVehicleSpawn" E:\pawno\include\YSI\y_hooks/impl.inc(835) : error 021: symbol already defined: "OnVehicleDeath" E:\pawno\include\YSI\y_hooks/impl.inc(879) : error 021: symbol already defined: "OnPlayerText" E:\pawno\include\YSI\y_hooks/impl.inc(962) : error 021: symbol already defined: "OnPlayerRequestClass" E:\pawno\include\YSI\y_hooks/impl.inc(1006) : error 021: symbol already defined: "OnPlayerEnterVehicle" E:\pawno\include\YSI\y_hooks/impl.inc(1051) : error 021: symbol already defined: "OnPlayerExitVehicle" E:\pawno\include\YSI\y_hooks/impl.inc(1095) : error 021: symbol already defined: "OnPlayerStateChange" E:\pawno\include\YSI\y_hooks/impl.inc(1140) : error 021: symbol already defined: "OnPlayerEnterCheckpoint" E:\pawno\include\YSI\y_hooks/impl.inc(1226) : error 021: symbol already defined: "OnPlayerEnterRaceCheckpoint" E:\pawno\include\YSI\y_hooks/impl.inc(1269) : error 021: symbol already defined: "OnPlayerLeaveRaceCheckpoint" E:\pawno\include\YSI\y_hooks/impl.inc(1355) : error 021: symbol already defined: "OnPlayerRequestSpawn" E:\pawno\include\YSI\y_hooks/impl.inc(1487) : error 021: symbol already defined: "OnPlayerPickUpPickup" E:\pawno\include\YSI\y_hooks/impl.inc(1531) : error 021: symbol already defined: "OnVehicleMod" E:\pawno\include\YSI\y_hooks/impl.inc(1576) : error 021: symbol already defined: "OnEnterExitModShop" E:\pawno\include\YSI\y_hooks/impl.inc(1621) : error 021: symbol already defined: "OnVehiclePaintjob" E:\pawno\include\YSI\y_hooks/impl.inc(1807) : error 021: symbol already defined: "OnPlayerSelectedMenuRow" E:\pawno\include\YSI\y_hooks/impl.inc(1851) : error 021: symbol already defined: "OnPlayerExitedMenu" E:\pawno\include\YSI\y_hooks/impl.inc(1939) : error 021: symbol already defined: "OnPlayerKeyStateChange" E:\pawno\include\YSI\y_hooks/impl.inc(1984) : error 021: symbol already defined: "OnRconLoginAttempt" E:\pawno\include\YSI\y_hooks/impl.inc(2072) : error 021: symbol already defined: "OnPlayerStreamIn" Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase 26 Errors.
  4. if(dialogid == DIALOG_SUMO) { if(response) { if(listitem == 0) { if(SumoStatus == 1) return SendClientMessage(playerid, -1, "Asteapta sa termine aceasta rund"); if(InSumo[playerid] == 1) return SendClientMessage(playerid, -1, "Esti deja in arena"); if(Iter_Count(Sumo) > 9) return SendClientMessage(playerid, -1, "Sunt prea multi jucatori in arena"); if(!IsPlayerInRangeOfPoint(playerid, 7.0, 2177.5938,1285.7144,10.8203)) return SendClientMessage(playerid, -1, "Nu esti la Sumo Arena"); if(PlayerInfo[playerid][pCarLic] == 0) return SendClientMessage(playerid, -1, "Nu ai licenta de condus"); InSumo[playerid] = 1;SumoPlayers++; SumoCAR[playerid] = CreateVehicle(502, SumoFloat[SumoPlayers][0], SumoFloat[SumoPlayers][1], SumoFloat[SumoPlayers][2], SumoFloat[SumoPlayers][3], 1, 1, -1); PutPlayerInVehicle(playerid, SumoCAR[playerid], 0); TogglePlayerControllable(playerid, 0);Iter_Add(Sumo,playerid); format(string, 128, "%s a intrat in arena(%d)", GetName(playerid),SumoPlayers); SendSumoArena(COLOR_YELLOW, string); if(SumoPlayers > 1) { TimerSumoR = 30; } } } }
  5. Ma scoate direct si cand dau iar /sumo tot ma scoate dar se pune locul, cum dau /sumo ma scoate imediat
  6. Salut sa-mp.ro, am o problema la un sistem de sumo in care cand dau /sumo ma da in meci si ma scoate automat fara sa doresc eu, cum as putea rezolva? COD: function Leave_Sumo(playerid) { DestroyVehicle(SumoCAR[playerid]); new string[124]; format(string, 128, "%s leave sumo arena", GetName(playerid)); SendSumoArena(COLOR_YELLOW, string); InSumo[playerid] = 0; SetPlayerPosEx(playerid, 1154.7026,-1440.1458,15.7969); Iter_Remove(Sumo,playerid); SetPlayerVirtualWorld(playerid,0); TogglePlayerControllable(playerid, 1); TextDrawHideForPlayer(playerid, Sumo_TD); return 1; }
  7. Windows, si am pus aia in server cfg, am gasit niste pluginuri dar nu imj arata textul si iconitele se la biz, case etc.
  8. poate am pus niste plugins gresite imi poti da tu unele bune daca e de la asta?
  9. ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3.7-R2, (C)2005-2015 SA-MP Team [11:22:18] [11:22:18] Server Plugins [11:22:18] -------------- [11:22:18] Loading plugin: mysql [11:22:18] Failed. [11:22:18] Loading plugin: sscanf [11:22:18] Failed. [11:22:18] Loading plugin: crashdetect [11:22:18] Failed. [11:22:18] Loading plugin: streamer [11:22:18] Failed. [11:22:18] Loaded 0 plugins. [11:22:18] [11:22:18] Ban list [11:22:18] -------- [11:22:18] Loaded: samp.ban [11:22:18] [11:22:18] [11:22:18] Filterscripts [11:22:18] --------------- [11:22:18] Loaded 0 filterscripts. [11:22:18] Script[gamemodes/bluffs.amx]: Run time error 19: "File or function is not found" [11:22:18] Number of vehicle models: 0 dar am pus plugins si tot nu merge
  10. Salutare sam-mp.ro, am si eu i problema cand dau start la server pe localhost imi da 0 vehicles adica ca nu am conectat baza de date am urcat baza de date tot bine am pus niste plugins care am gasit si tot nu merge, stie cnv cum as putea rezolva cu alte gm-uri merge
  11. Salutare tuturor, am o problema la un gamemode cand ies din biz mi se scoate CP si asta ma deranjeaza mai ales cand dau rob, am incercat sa caut prin Gamemode dar nu am gasit nimic ce sa afecteze!
  12. imi poti da un link de la ambele te rog frumos ??
  13. Salutare cand dau pe samp-server imi da 0 asa ca in poza de mai jos si la server log asa am facut conectarea la baza de date si in phpmyadmin si in gm ce are ma poate ajuta cnv? va rog frumos ? server log: A-MP Dedicated Server ---------------------- v0.3.7-R2, (C)2005-2015 SA-MP Team [16:22:29] [16:22:29] Server Plugins [16:22:29] -------------- [16:22:29] Loading plugin: mysql [16:22:29] >> plugin.mysql: R39-2 successfully loaded. [16:22:29] Loaded. [16:22:29] Loading plugin: sscanf [16:22:29] [16:22:29] =============================== [16:22:29] sscanf plugin loaded. [16:22:29] Version: 2.8.1 [16:22:29] (c) 2012 Alex "Y_Less" Cole [16:22:29] =============================== [16:22:29] Loaded. [16:22:29] Loading plugin: crashdetect [16:22:29] CrashDetect v4.15.1 is OK. [16:22:29] Loaded. [16:22:29] Loading plugin: streamer [16:22:29] *** Streamer Plugin v2.9.3 by Incognito loaded *** [16:22:29] Loaded. [16:22:29] Loading plugin: tde [16:22:29] Failed. [16:22:29] Loaded 4 plugins. [16:22:29] [16:22:29] Ban list [16:22:29] -------- [16:22:29] Loaded: samp.ban [16:22:29] [16:22:29] [16:22:29] Filterscripts [16:22:29] --------------- [16:22:29] Loading filterscript 'ls_elevator.amx'... [16:22:29] Loading filterscript 'Celular.amx'... [16:22:29] Unable to load filterscript 'Celular.amx'. [16:22:29] Loading filterscript 'xmass.amx'... [16:22:29] *** Streamer Plugin: Include file version (0x27101) does not match plugin version (0x293) (script might need to be recompiled with the correct include file). [16:22:29] Chirstmas time decorations loded! [16:22:29] *** Streamer Plugin: CreateDynamicObject: Expecting 14 parameter(s), but found 12. [16:22:29] Loaded 2 filterscripts. [16:22:29] Script[gamemodes/gm.amx]: Run time error 17: "Invalid/unsupported P-code file format" [16:22:29] Failed to load 'gamemodes/gm.amx' script. [16:22:29] Number of vehicle models: 0 Console input: gmx [16:23:39] [debug] Server crashed due to an unknown error [16:23:39] [debug] Native backtrace: [16:23:39] [debug] #0 00401696 in ?? () from samp-server.exe [16:23:39] [debug] #1 0046d7c5 in ?? () from samp-server.exe [16:23:39] [debug] #2 0048f48f in ?? () from samp-server.exe [16:23:39] [debug] #3 5d841bd3 in ?? () from plugins\mysql.DLL [16:23:39] [debug] #4 0048d4ef in ?? () from samp-server.exe [16:23:39] [debug] #5 0049b4a1 in ?? () from samp-server.exe [16:23:40] [debug] #6 0049b4b1 in ?? () from samp-server.exe ---------- Loaded log file: "server_log.txt". ---------- SA-MP Dedicated Server ---------------------- v0.3.7-R2, (C)2005-2015 SA-MP Team [16:24:28] [16:24:28] Server Plugins [16:24:28] -------------- [16:24:28] Loading plugin: mysql [16:24:29] >> plugin.mysql: R39-2 successfully loaded. [16:24:29] Loaded. [16:24:29] Loading plugin: sscanf [16:24:29] [16:24:29] =============================== [16:24:29] sscanf plugin loaded. [16:24:29] Version: 2.8.1 [16:24:29] (c) 2012 Alex "Y_Less" Cole [16:24:29] =============================== [16:24:29] Loaded. [16:24:29] Loading plugin: crashdetect [16:24:29] CrashDetect v4.15.1 is OK. [16:24:29] Loaded. [16:24:29] Loading plugin: streamer [16:24:29] *** Streamer Plugin v2.9.3 by Incognito loaded *** [16:24:29] Loaded. [16:24:29] Loading plugin: tde [16:24:29] Failed. [16:24:29] Loaded 4 plugins. [16:24:29] [16:24:29] Ban list [16:24:29] -------- [16:24:29] Loaded: samp.ban [16:24:29] [16:24:29] [16:24:29] Filterscripts [16:24:29] --------------- [16:24:29] Loading filterscript 'ls_elevator.amx'... [16:24:29] Loading filterscript 'Celular.amx'... [16:24:29] Unable to load filterscript 'Celular.amx'. [16:24:29] Loading filterscript 'xmass.amx'... [16:24:29] *** Streamer Plugin: Include file version (0x27101) does not match plugin version (0x293) (script might need to be recompiled with the correct include file). [16:24:29] Chirstmas time decorations loded! [16:24:29] *** Streamer Plugin: CreateDynamicObject: Expecting 14 parameter(s), but found 12. [16:24:29] Loaded 2 filterscripts. [16:24:29] Script[gamemodes/gm.amx]: Run time error 17: "Invalid/unsupported P-code file format" [16:24:29] Failed to load 'gamemodes/gm.amx' script. [16:24:29] Number of vehicle models: 0 poza:
  14. poti da toate includeurile te rog nu e mapadreas si neons imi da error
  15. cum gasesc sciptul ala cu scantei din teava sau o anumit linie
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.