Üzenetek megjelenítése

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.


Témák - Marsekting1234

Oldalak: [1]
1
Segítségkérés / Vehicle-System
« Dátum: 2018. December 09. - 15:01:05 »
Sziasztok! Hogy tudom beállítani egy alap zero-s vehicle systemben, hogy a kocsi ne gyulladjon ki, ha össze van törve annyira. Azt értem ez alatt, hogy ha például felborul a kocsi, akkor ne gyulladjon ki ha eléri azt a százalékot. Előre is köszönöm szépen!

2
Segítségkérés / Modellezés probléma
« Dátum: 2018. Május 02. - 22:24:18 »
Sziasztok! Olyan problémám lenne, hogy lemodelleztem egy benzinkutat, és a textúra nem jelenik meg rajta, pedig minden jól van tudomásom szerint beállítva. TXD fileban, ugyan az a név mint amit használtam materialként 3dsmax-ba, compressedre van állítva, és a collison is collison mesh-re van állítva. Órák óta próbálkozom, dúrom a fórumokat, de nem találtam semmit! Előre is köszönöm a választ!
 
 
 
http://www.kepfeltoltes.eu/images/hdd1/2018/05/02/615N_vtelen.png
 
Most utólag megpróbáltam azt, hogy minden képet a TXD-ben 256x256-ra átméretezek, és így sem jártam sikerrel. Csak ez az egy model nem működik, pedig 2x is teljesen újra modelleztem. Csináltam egy olyan modellt amelyik csak egy textúrából áll, és az pedig működik, szóval nem tudom mi lehet a baj.

3
Segítségkérés / Gate System probléma
« Dátum: 2017. Június 30. - 23:30:50 »
Sziasztok! Az a probléma hogy csak 1x működik a script. Tehát egyszer megengedi hogy /fel és egyszer hogy /le és utána csak egy resources restart után engedi ujra. Ez miért van? Előre is köszönöm.
 
 
 
local objGates = createObject(2779, 1775.8000488281, -2059.3999023438, 12.60000038147, 0, 0, 0)
exports.pool:allocateElement(objGates)
 
local open = false
local which = 0
 
-- Gate code
function useSESideGarageGate(thePlayer)
    local x, y, z = getElementPosition(thePlayer)
    local distance1 = getDistanceBetweenPoints3D(1775.8000488281, -2059.3999023438, 12.60000038147, x, y, z)
 
    if (distance1<=10) and (open==false) then
        if (exports.global:hasItem(thePlayer, 108) or exports.global:hasItem(thePlayer, 82)) then
            open = true
            which = 1
            outputChatBox(\"Szerelő lift felemelve!\", thePlayer, 0, 255, 0)
            moveObject(objGates, 1000, 1775.8000488281, -2059.3999023438, 14.5, 0, 0, 0)
        end
    end
end
addCommandHandler(\"fel\", useSESideGarageGate)
 
function closeSESideGarageGate(thePlayer)
    if (which==1) then
        which = 0
        outputChatBox(\"Szerelő lift leengedve!\", thePlayer, 0, 255, 0)
        moveObject(objGates, 1000, 1775.8000488281, -2059.3999023438, 12.60000038147, 0, 0, 0)
    end
end
addCommandHandler(\"le\", closeSESideGarageGate)
 
function resetState7()
    open = false
end
 
 

4
Archívum / Gate System probléma
« Dátum: 2017. Június 30. - 23:24:46 »
Sziasztok! Van egy gate systemem és az a probléma hogy  egyszer felemel egyszer pedig le. Tehát, beirom hogy /fel akkor felemel, utána hogy /le akkor még lemegy, és utána ha ujra beirom hogy /fel már nem megy fel, csak ha restartolom a resourcest.
 
Mi lehet a probléma?
 
 
 
local objGates = createObject(2779, 1775.8000488281, -2059.3999023438, 12.60000038147, 0, 0, 0)
exports.pool:allocateElement(objGates)
 
local open = false
local which = 0
 
-- Gate code
function useSESideGarageGate(thePlayer)
    local x, y, z = getElementPosition(thePlayer)
    local distance1 = getDistanceBetweenPoints3D(1775.8000488281, -2059.3999023438, 12.60000038147, x, y, z)
 
    if (distance1<=10) and (open==false) then
        if (exports.global:hasItem(thePlayer, 108) or exports.global:hasItem(thePlayer, 82)) then
            open = true
            which = 1
            outputChatBox(\"Szerelő lift felemelve!\", thePlayer, 0, 255, 0)
            moveObject(objGates, 1000, 1775.8000488281, -2059.3999023438, 14.5, 0, 0, 0)
        end
    end
end
addCommandHandler(\"fel\", useSESideGarageGate)
 
function closeSESideGarageGate(thePlayer)
    if (which==1) then
        which = 0
        outputChatBox(\"Szerelő lift leengedve!\", thePlayer, 0, 255, 0)
        moveObject(objGates, 1000, 1775.8000488281, -2059.3999023438, 12.60000038147, 0, 0, 0)
    end
end
addCommandHandler(\"le\", closeSESideGarageGate)
 
function resetState7()
    open = false
end
 
 

5
Segítségkérés / Hogy oldhatnám meg a szerelést?
« Dátum: 2016. Június 28. - 22:56:52 »
Tehát hogyan oldhatnám meg azt, hogy a szerelő, tudjon szerelni? A mostani szerelő frakció ID-je: 52

6
Fórum Archívum (Témák/Fórumok) / Nincs officer.
« Dátum: 2016. Június 28. - 21:53:46 »
Nem működik a license system, pedig minden jól van beírva az NPC-nek. Jól van beírva a rotáció, jólvan beírva a pozíció, és az interior is.

Dupla hozzászólás automatikusan összefûzve. ( 2016. Június 28. - 22:00:32 )

Sikerült, zárom.

7
Segítségkérés / License System bug
« Dátum: 2016. Június 28. - 21:31:41 »
Az van, hogy jól van bemásolva minden, npc skin is bevan írva, rotation is jól van beírva interior, dimension is, és mégsincs ott az officer. Miért lehet?
wLicense, licenseList, bAcceptLicense, bCancel = nil
local Johnson = createPed(280 -2035.0947265625, -117.6943359375, 1035.171875 )
setPedRotation(Johnson, 264.51910400391 )
setElementDimension(Johnson, 4)
setElementInterior(Johnson, 3)
setElementData( Johnson, \"talk\", 1 )
setElementData( Johnson, \"name\", \"Officer Johnson\" )
Pozíció: -2035.09375, -117.568359375, 1035.171875
Rotáció: 274.89587402344
Dimenzió: 4
Interior: 3

8
Segítségkérés / Nem működik a /duty
« Dátum: 2016. Június 25. - 00:18:59 »
Az van hogy a /duty nem működik, de az f4 igen. Pedig a pd-nel es az omsz-nel megy a /duty. Mi lehet a baj?

9
Segítségkérés / Gate lerakás
« Dátum: 2016. Június 21. - 00:02:13 »
Hogyan helyezhetek le olyan gatet, ami a PD garázsnál van? A sorompósra gondolok. Minden RP szerveren van. De szeretnék olyan sorompót máshová is rakni. Megoldható? Előre is köszi a választ.

10
Segítségkérés / Kezdő pénz átállítás
« Dátum: 2016. Június 20. - 16:52:55 »
Hol állíthatom át Zero MTA-ban a kezdő pénzt, hogy ne 100ft legyen?

11
Segítségkérés / Mi a resources neve?
« Dátum: 2016. Június 13. - 17:55:21 »
Sziasztok! Megtudnátok mondani, hogy mi a neve ennek a resouces-nek, vagy mappának, ahol megtalálom, vagy átírhatom ezt a fejlécet?
\"737561864N_vtelen_www.kepfeltoltes.hu_.png\"
http://kepfeltoltes.hu/view/160613/737561864N_vtelen_www.kepfeltoltes.hu_.png

12
Segítségkérés / Jessie Smith lerakása
« Dátum: 2016. Június 09. - 15:39:38 »
Az van, hogy leraktam Jessie-t és működik is, csak nem látom az NPC-t
Mi lehet a baj? Tehát lehet munkát felvenni, csak nemlátom.

Dupla hozzászólás automatikusan összefûzve. ( 2016. Június 09. - 15:40:52 )

Se nem engedi hogy felvegyem, ezt írja:Már van munkád, elött vedd fel.

13
Vannak. És .so-ra van állítva configban, mert linux alapú a gép

Dupla hozzászólás automatikusan összefûzve. ( 2016. Június 07. - 18:28:20 )

A hivakonzol ezt írja: (A serial-t és az IP-t én szedtem ki)
[2016-06-07 18:09:30] WARNING: Ignoring duplicate client file in resource \'account-system\': \'img/100.png\'
[2016-06-07 18:09:31] Resource \'acpanel\' requests some acl rights. Use the command \'aclrequest list acpanel\'
[2016-06-07 18:09:32] WARNING: Ignoring duplicate client file in resource \'character-system\': \'img/100.png\'
[2016-06-07 18:09:32] WARNING: Ignoring duplicate client file in resource \'dashboard-structure\': \'img/100.png\'
[2016-06-07 18:09:36] ERROR: Couldn\'t find map borton for resource map-system
[2016-06-07 18:09:36] Loading of resource \'map-system\' failed
[2016-06-07 18:09:36] ERROR: Couldn\'t find file vla1.dff for resource mods-system
[2016-06-07 18:09:36] Loading of resource \'mods-system\' failed
[2016-06-07 18:09:38] ERROR: Problem with resource: editor;
[2016-06-07 18:09:38] ERROR: Problem with resource: editor_main; Failed to link to freecam
[2016-06-07 18:09:38] ERROR: Problem with resource: fallout; Failed to link to freecam
[2016-06-07 18:09:38] ERROR: Not processing resource \'freecam\' as it has duplicates on different paths:
                  Path #1: \"resources/freecam\"
                  Path #2: \"resources/[editor]/freecam\"
[2016-06-07 18:09:38] ERROR: Not processing resource \'parachute\' as it has duplicates on different paths:
                  Path #1: \"resources/parachute\"
                  Path #2: \"resources/[gameplay]/parachute\"
[2016-06-07 18:09:38] ERROR: Not processing resource \'runcode\' as it has duplicates on different paths:
                  Path #1: \"resources/runcode\"
                  Path #2: \"resources//runcode\"
[2016-06-07 18:09:38] Resources: 299 loaded, 3 failed
[2016-06-07 18:09:38] Server password set to \'sapka\'
[2016-06-07 18:09:38] MODULE: File not found - mods/deathmatch/modules/sample_linux.so
[2016-06-07 18:09:38] MODULE: Loaded \"MySQL 5.0 database module\" (0.41) by \"Alberto Alonso <[email protected]>\"
[2016-06-07 18:09:38] MODULE: Loaded \"SHA Module\" (1.02) by \"mabako\"
[2016-06-07 18:09:38] MODULE: Unable to load mods/deathmatch/modules/ml_sockets.so (libssl.so.0.9.8: nem nyitható meg a megosztott objektumfájl: Nincs ilyen fájl vagy könyvtár)
[2016-06-07 18:09:38] Starting resources....
[2016-06-07 18:09:38] ERROR: global/money_globals.lua:1: exports: Call to non-running server resource (mysql) [string \"?\"]
[2016-06-07 18:09:38] ERROR: mysql/connection.lua:16: bad argument #1 to \'mysql_connect\' (string expected, got nil)
[2016-06-07 18:09:38] ERROR: sql/mysql.lua:22: bad argument #1 to \'mysql_connect\' (string expected, got nil)
[2016-06-07 18:09:38] ERROR: Couldn\'t find resource colorblender. Check it exists.
[2016-06-07 18:09:38] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:38] ERROR: camera-system/s_camera_management.lua:4: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:38] ERROR: Couldn\'t find resource computers-system. Check it exists.
[2016-06-07 18:09:38] WARNING: elevator-system/s_elevator_system.lua(Line 308) [server] setVehicleFrozen is deprecated and may not work in future versions. Please replace with setElementFrozen before Tuesday.
[2016-06-07 18:09:38] WARNING: elevator-system/s_elevator_system.lua(Line 326) [server] setPedFrozen is deprecated and may not work in future versions. Please replace with setElementFrozen before Tuesday.
[2016-06-07 18:09:38] Some files in \'elevator-system\' use deprecated functions.
[2016-06-07 18:09:38] Use the \'upgrade\' command to perform a basic upgrade of resources.
[2016-06-07 18:09:38] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:38] ERROR: elevator-system/s_elevator_system.lua:55: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:38] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:38] ERROR: faction-system/s_faction_system.lua:4: call: failed to call \'mysql:query_fetch_assoc\' [string \"?\"]
[2016-06-07 18:09:38] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:38] ERROR: faction-system/s_faction_system.lua:33: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:38] ERROR: Couldn\'t find resource freecam. Check it exists.
[2016-06-07 18:09:38] WARNING: fuel-system/s_fuel_system.lua:90: Bad argument @ \'setTimer\' [Expected number at argument 3, got function]
[2016-06-07 18:09:38] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:38] ERROR: fuel-system/s_fuel_peds.lua:296: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:38] ERROR: Couldn\'t find resource gps-system. Check it exists.
[2016-06-07 18:09:38] ERROR: Couldn\'t find resource help-system. Check it exists.
[2016-06-07 18:09:38] WARNING: heligrab/heli_c.lua(Line 142) [Client] isPlayerDead is deprecated and may not work in future versions. Please replace with isPedDead before Tuesday.
[2016-06-07 18:09:38] Some files in \'heligrab\' use deprecated functions.
[2016-06-07 18:09:38] Use the \'upgrade\' command to perform a basic upgrade of resources.
[2016-06-07 18:09:38] WARNING: interior-system/s_interior_system.lua(Line 1312) [server] setPedFrozen is deprecated and may not work in future versions. Please replace with setElementFrozen before Tuesday.
[2016-06-07 18:09:38] WARNING: interior-system/c_interior_system.lua(Line 363) [Client] setPedFrozen is deprecated and may not work in future versions. Please replace with setElementFrozen before Tuesday.
[2016-06-07 18:09:38] Some files in \'interior-system\' use deprecated functions.
[2016-06-07 18:09:38] Use the \'upgrade\' command to perform a basic upgrade of resources.
[2016-06-07 18:09:45] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:45] ERROR: bank-system/s_bank_system.lua:5: call: failed to call \'mysql:query_free\' [string \"?\"]
[2016-06-07 18:09:45] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:45] ERROR: bank-system/s_atm_system.lua:44: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:45] Server minclientversion is now 1.5.2-9.07985.0
[2016-06-07 18:09:45] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:45] ERROR: item-system/s_phone_system.lua:6: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:45] ERROR: Couldn\'t find resource item-world. Check it exists.
[2016-06-07 18:09:45] WARNING: gatekeepers-system/s_hunter.lua(Line 4) [server] setVehicleFrozen is deprecated and may not work in future versions. Please replace with setElementFrozen before Tuesday.
[2016-06-07 18:09:45] WARNING: gatekeepers-system/s_hunter.lua(Line 13) [server] setPedFrozen is deprecated and may not work in future versions. Please replace with setElementFrozen before Tuesday.
[2016-06-07 18:09:45] WARNING: gatekeepers-system/s_rook.lua(Line 5) [server] setPedFrozen is deprecated and may not work in future versions. Please replace with setElementFrozen before Tuesday.
[2016-06-07 18:09:45] WARNING: gatekeepers-system/s_ty.lua(Line 8) [server] setPedFrozen is deprecated and may not work in future versions. Please replace with setElementFrozen before Tuesday.
[2016-06-07 18:09:45] Some files in \'gatekeepers-system\' use deprecated functions.
[2016-06-07 18:09:45] Use the \'upgrade\' command to perform a basic upgrade of resources.
[2016-06-07 18:09:45] WARNING: job-system/c_job_system.lua(Line 11) [Client] setPedFrozen is deprecated and may not work in future versions. Please replace with setElementFrozen before Tuesday.
[2016-06-07 18:09:45] WARNING: job-system/fishing/s_fishing_job.lua [server] is encoded in ANSI instead of UTF-8.  Please convert your file to UTF-8.
[2016-06-07 18:09:45] WARNING: job-system/photographer/c_photographer_job.lua(Line 13) [Client] setPedFrozen is deprecated and may not work in future versions. Please replace with setElementFrozen before Tuesday.
[2016-06-07 18:09:45] WARNING: job-system/photographer/c_photographer_job.lua(Line 75) [Client] isPlayerDead is deprecated and may not work in future versions. Please replace with isPedDead before Tuesday.
[2016-06-07 18:09:45] WARNING: job-system/donut/s_job_apply.lua(Line 9) [server] setPedFrozen is deprecated and may not work in future versions. Please replace with setElementFrozen before Tuesday.
[2016-06-07 18:09:45] Some files in \'job-system\' use deprecated functions.
[2016-06-07 18:09:45] Use the \'upgrade\' command to perform a basic upgrade of resources.
[2016-06-07 18:09:45] WARNING: Script \'job-system/fishing/s_fishing_job.lua\' is not encoded in UTF-8.  Loading as ANSI...
[2016-06-07 18:09:45] SCRIPT ERROR: job-system/fishing/s_fishing_job.lua:1: unexpected symbol near \'?\'
[2016-06-07 18:09:45] ERROR: Loading script failed: job-system/fishing/s_fishing_job.lua:1: unexpected symbol near \'?\'
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource map-system. Check it exists.
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource mdc-system. Check it exists.
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource mods-system. Check it exists.
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource parachute. Check it exists.
[2016-06-07 18:09:46] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:46] ERROR: paynspray-system/s_paynspray_system.lua:33: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource phone-system. Check it exists.
[2016-06-07 18:09:46] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:46] ERROR: realism-system/s_ck_corpses.lua:29: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:46] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:46] ERROR: realism-system/s_ck_corpses.lua:74: call: failed to call \'mysql:query_fetch_assoc\' [string \"?\"]
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource vgscoreboard. Check it exists.
[2016-06-07 18:09:46] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:46] ERROR: shop-system/s_generalshop_system.lua:240: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:46] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:46] ERROR: tag-system/s_tag_system.lua:81: call: failed to call \'mysql:query_free\' [string \"?\"]
[2016-06-07 18:09:46] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:46] ERROR: tag-system/s_tag_system.lua:84: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:46] WARNING: tow-system/s_tow.lua(Line 162) [server] setVehicleFrozen is deprecated and may not work in future versions. Please replace with setElementFrozen before Tuesday.
[2016-06-07 18:09:46] Some files in \'tow-system\' use deprecated functions.
[2016-06-07 18:09:46] Use the \'upgrade\' command to perform a basic upgrade of resources.
[2016-06-07 18:09:46] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:46] ERROR: vehicle-system/s_vehicle_system.lua:293: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:46] INFO: loadAllVehicles failed
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource runcode. Check it exists.
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource help. Check it exists.
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource weather-system. Check it exists.
[2016-06-07 18:09:46] WARNING: vehicle-interiors/s_vehicle_interiors.lua(Line 72) [server] setPedFrozen is deprecated and may not work in future versions. Please replace with setElementFrozen before Tuesday.
[2016-06-07 18:09:46] Some files in \'vehicle-interiors\' use deprecated functions.
[2016-06-07 18:09:46] Use the \'upgrade\' command to perform a basic upgrade of resources.
[2016-06-07 18:09:46] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:46] ERROR: dancer-system/s_dancers.lua:25: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:46] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:46] ERROR: account-system/s_account_system.lua:87: call: failed to call \'mysql:query_fetch_assoc\' [string \"?\"]
[2016-06-07 18:09:46] ERROR: account-system/s_account_system.lua:88: attempt to index local \'motdresult\' (a boolean value)
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource vG-logs. Check it exists.
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource apps-system. Check it exists.
[2016-06-07 18:09:46] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:46] ERROR: object-system/s_object_management.lua:61: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource donators. Check it exists.
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource event-system. Check it exists.
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource payday. Check it exists.
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource animtest. Check it exists.
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource hardwaresurvey. Check it exists.
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource lsia. Check it exists.
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource skinek. Check it exists.
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource kocsik. Check it exists.
[2016-06-07 18:09:46] ERROR: Couldn\'t find resource fegyver. Check it exists.
[2016-06-07 18:09:47] Querying MTA master server... success! (Auto detected IP:178.248.200.34)
[2016-06-07 18:09:47] Server started and is ready to accept connections!
[2016-06-07 18:09:47] To stop the server, type \'shutdown\' or press Ctrl-C
[2016-06-07 18:09:47] Type \'help\' for a list of commands.
[2016-06-07 18:09:47] Stopping global
[2016-06-07 18:09:47] Starting global
[2016-06-07 18:09:47] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:47] ERROR: global/money_globals.lua:26: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:47] ERROR: mysql/connection.lua:62: bad argument #1 to \'mysql_ping\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:09:47] ERROR: global/money_globals.lua:37: call: failed to call \'mysql:query\' [string \"?\"]
[2016-06-07 18:09:47] global restarted successfully
[2016-06-07 18:09:48] CONNECT: Marsekting123 connected (IP:   Serial:   Version: 1.5.2-9.08011.0)
[2016-06-07 18:09:48] JOIN: Marsekting123 joined the game (IP: )
[2016-06-07 18:09:49] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:09:50] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:09:51] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:09:52] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:09:53] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:09:54] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:09:55] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:09:56] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:09:57] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:09:58] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:09:59] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:00] ERROR: Client (Marsekting123) triggered serverside event nametags:chatbubble, but event is not added serverside
[2016-06-07 18:10:00] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:01] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:02] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:03] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:04] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:05] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:06] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:07] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:08] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:09] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:10] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:11] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:12] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:13] ERROR: mysql/connection.lua:206: bad argument #1 to \'mysql_escape_string\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:10:13] ERROR: mysql/connection.lua:206: bad argument #1 to \'mysql_escape_string\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:10:13] ERROR: account-system/s_account_system.lua:846: call: failed to call \'mysql:escape_string\' [string \"?\"]
[2016-06-07 18:10:13] ERROR: mysql/connection.lua:206: bad argument #1 to \'mysql_escape_string\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:10:13] ERROR: mysql/connection.lua:206: bad argument #1 to \'mysql_escape_string\' (LuaBook.mysqlHandler expected, got nil)
[2016-06-07 18:10:13] ERROR: account-system/s_account_system.lua:847: call: failed to call \'mysql:escape_string\' [string \"?\"]
[2016-06-07 18:10:13] ERROR: account-system/s_account_system.lua:857: attempt to concatenate local \'safeusername\' (a boolean value)
[2016-06-07 18:10:13] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:14] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:15] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:16] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:17] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:18] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:18] ERROR: Client (Marsekting123) triggered serverside event nametags:chatbubble, but event is not added serverside
[2016-06-07 18:10:19] WARNING: bank-system/s_bankrablas.lua:18: Bad argument @ \'getElementData\' [Expected element at argument 1, got boolean]
[2016-06-07 18:10:20] QUIT: Marsekting123 left the game [Quit]

14
Segítségkérés / Zero Roleplay Regisztráció Hiba [HOST]
« Dátum: 2016. Június 07. - 16:21:27 »
Sziasztok! Az van, hogy nem lehet regisztrálni, se bejelntkezni. Nem csinál semmit, pedig átvan írva a mysql, sql, és a report system is. Mi lehet a baj, phpmyadmin-ba is importálva van az sql. Egyszerűen nem tudok rájönni, mi lehet a baj. Próbáltam más modot, ott is ez volt. Előre is köszönöm a választ!

Oldalak: [1]
SimplePortal 2.3.7 © 2008-2024, SimplePortal