Problem(error/warning): Prebacivao sam sistem za /lp i /askq kao na SA iz drugog moda, i sve lepo radi kad posaljem pitanje ono stigne i kada ukucam /lp tu je pitanje, kada kliknem na pitanje da bih odgovorio na njega i kada upisem odgovor i posaljem, server se crasha.
Dio skripte: [pawn] if(dialogid == 422)
{
if(!response) return 1;
if( response ) {
new askQ = -1;
for( new id = 1; id < MAX_ASKQS; id++ ) {
if( adMaskqList[ id ][ askqSend ] == false ) {
askQ = id;
break;
}
}
if( askQ == -1 ) return SCM( playerid, -1, "Vec ima maksimalan broj poslatih pitanja." );
adMaskqList[ askQ ][ askqSend ] = true;
adMaskqList[ askQ ][ askqID ] = playerid;
askqInfo[ playerid ][ askqSended ] = true;
askqInfo[ playerid ][ askqAnswered ] = false;
strmid( adMaskqList[ askQ ][ askqOwner ], GetName( playerid ), 0, strlen( GetName( playerid ) ), 32 );
strmid( adMaskqList[ askQ ][ askqQuestion ], inputtext, 0, strlen( inputtext ), 128 );
SCM( playerid, -1, "Poslao si pitanje Adminima i Gamemasterima." );
PoslaoPitanje[playerid] = 1;
format( globalstring, sizeof( globalstring ), ""SPLAVA"[Pitanje] %s je poslao pitanje.( /lp )", GetName( playerid ) );
AdminGamemaster( -1, globalstring );
}
return 1;
}
if(dialogid == 424)
{
if( !response ) return true;
if( response ) {
listitem++;
new string[ 256 ];
if( adMaskqList[ listitem ][ askqSend ] == false ) return SCM( playerid, -1, "U ovom slotu nema pitanja." );
IzabraniAskQ[ playerid ] = listitem;
format( string, sizeof( string ), "Igrac %s je poslao pitanje.\n\nPitanje: %s", adMaskqList[ listitem ][ askqOwner ], adMaskqList[ listitem ][ askqQuestion ] );
SPD( playerid, 425, DSI, "Pitanje", string, "Odgovori", "Odustani" );
}
return 1;
}
if(dialogid == 425)
{
if( !response ) return true;
if( response ) {
new text[ 128 ];
if( sscanf( inputtext, "s[128]", text ) ) return 1;
new askid = IzabraniAskQ[ playerid ];
if( adMaskqList[ askid ][ askqSend ] == false ) return SCM( playerid, -1, "U ovom slotu nema pitanja." );
adMaskqList[ askid ][ askqSend ] = false;
new id = adMaskqList[ askid ][ askqID ];
IzabraniAskQ[ playerid ] = -1;
if( strcmp( GetName( id ), adMaskqList[ askid ][ askqOwner ], true ) == 0 ) {
askqInfo[ id ][ askqAnswered ] = true;
strmid( askqInfo[ id ][ askqAdmin ], GetName( playerid ), 0, strlen( GetName( playerid ) ), 32 );
strmid( askqInfo[ id ][ askqAnswer ], text, 0, strlen( text ), 128 );
SendClientMessage( playerid, -1, "Poslali ste odgovor igracu %s.", id );
SendClientMessage( playerid, -1, "Vas odgovor glasi: %s.", text );
SendClientMessage( id, -1, "Admin/GameMaster je odgovorio na tvoje pitanje." );
SendClientMessage( id, -1, "Da pogledate odgovor ukucajte "BELA"'/pogledajodgovor'." );
strmid( adMaskqList[ askid ][ askqOwner ], "None", 0, strlen( "None" ), 32 );
adMaskqList[ askid ][ askqID ] = -1;
}
else {
if( id != IPI ) {
askqInfo[ id ][ askqSended ] = false;
askqInfo[ id ][ askqAnswered ] = false;
strmid( askqInfo[ id ][ askqAdmin ], "None", 0, strlen( "None" ), 32 );
strmid( askqInfo[ id ][ askqAnswer ], "None", 0, strlen( "None" ), 128 );
}
strmid( adMaskqList[ askid ][ askqOwner ], "None", 0, strlen( "None" ), 32 );
adMaskqList[ askid ][ askqID ] = -1;
SCM( playerid, -1, "Taj igrac nije online." );
return 1;
}
}
return 1;
}
if(dialogid == 8372)
{
if( !response ) return true;
if( response ) {
listitem++;
new string[ 256 ];
if( GMaskqList[ listitem ][ askqSendA ] == false ) return SCM( playerid, -1, "U ovom slotu nema pitanja." );
IzabraniAskQ[ playerid ] = listitem;
format( string, sizeof( string ), "Igrac %s je poslao pitanje.\n\nPitanje: %s", GMaskqList[ listitem ][ askqOwnerA ], GMaskqList[ listitem ][ askqQuestionA ] );
SPD( playerid, 8373, DSI, "Pitanje", string, "Odgovori", "Odustani" );
}
return 1;
}
if(dialogid == 8373)
{
if( !response ) return true;
if( response ) {
new text[ 128 ];
new string[ 256 ];
if( sscanf( inputtext, "s[128]", text ) ) return 1;
new askid = IzabraniAskQ[ playerid ];
if( GMaskqList[ askid ][ askqSendA ] == false ) return SCM( playerid, -1, "U ovom slotu nema pitanja." );
GMaskqList[ askid ][ askqSendA ] = false;
new id = GMaskqList[ askid ][ askqIDA ];
IzabraniAskQ[ playerid ] = -1;
if( strcmp( GetName( id ), GMaskqList[ askid ][ askqOwnerA ], true ) == 0 ) {
askqInfo[ id ][ askqAnswered ] = true;
strmid( askqInfo[ id ][ askqAdmin ], GetName( playerid ), 0, strlen( GetName( playerid ) ), 32 );
strmid( askqInfo[ id ][ askqAnswer ], text, 0, strlen( text ), 128 );
SendClientMessageEx( playerid, -1, "Poslali ste odgovor igracu %s.", id );
SendClientMessageEx( playerid, -1, "Vas odgovor glasi: %s.", text );
SendClientMessage( id, -1, "Admin/GM je odgovorio na tvoje pitanje." );
SendClientMessage( id, -1, "Da pogledate odgovor ukucajte "BELA"'/pogledajodgovor'." );
strmid( GMaskqList[ askid ][ askqOwnerA ], "None", 0, strlen( "None" ), 32 );
GMaskqList[ askid ][ askqIDA ] = -1;
}
else {
if( id != IPI ) {
askqInfo[ id ][ askqSended ] = false;
askqInfo[ id ][ askqAnswered ] = false;
strmid( askqInfo[ id ][ askqAdmin ], "None", 0, strlen( "None" ), 32 );
strmid( askqInfo[ id ][ askqAnswer ], "None", 0, strlen( "None" ), 128 );
}
strmid( GMaskqList[ askid ][ askqOwnerA ], "None", 0, strlen( "None" ), 32 );
GMaskqList[ askid ][ askqIDA ] = -1;
SCM( playerid, -1, "Taj igrac nije online." );
return 1;
}
}
return 1;
}[/pawn]
Debug iz server_log(ukoliko je u pitanju crashanje servera - crashdetect log): Crash info:--------------------------
SA-MP Server: 0.3.7-R2
Exception At Address: 0x0049DC0C Module: (samp-server.exe)
Registers:
EAX: 0x6C736F50 EBX: 0x06B05973 ECX: 0x7FFFFFFE EDX: 0x0014EEEA
ESI: 0x0014EB38 EDI: 0x0014F319 EBP: 0x0014EB84 ESP: 0x0014EAF8
EFLAGS: 0x00010202
Stack:
+0000: 0x0014F2D0 0x0014EED0 0x06B059A8 0x77CD0EB7
+0010: 0x00000101 0x01725448 0x07695000 0x00000007
+0020: 0x00000000 0x00000080 0x00000000 0x00000000
+0030: 0x00000000 0x00000000 0x00000000 0x00000101
+0040: 0x0000001B 0x00000000 0x6C736F50 0xFFFFFFFF
+0050: 0x00000000 0x000002EE 0x01720000 0x01DDE790
+0060: 0x01DDE798 0x25000124 0x00000000 0x01240886
+0070: 0x01DDDD00 0x07695008 0x00000101 0x01010000
+0080: 0x25000124 0x00000002 0x00000017 0x00000000
+0090: 0x00490000 0x01720000 0x01725410 0x00000081
+00A0: 0x01725410 0x00000101 0x01DDDD00 0x00000000
+00B0: 0x00000081 0x01CD0886 0x0014ED98 0x0049D208
+00C0: 0x0014EC44 0x77D27620 0xE410B073 0xFFFFFFFE
+00D0: 0x0014EC18 0x77CCDBBD 0x00000000 0x07695008
+00E0: 0x00001749 0x07695008 0x00000001 0x0172CD50
+00F0: 0x0014ED60 0x00000000 0x004537C7 0x07695008
+0100: 0x0000176C 0x00000001 0x00000009 0x00000002
+0110: 0x0100007F 0x0049EECA 0x00000000 0x00000000
+0120: 0x0014EC54 0x00498E11 0x01720000 0x00000000
+0130: 0x00498E16 0x00001749 0x0172CD50 0x00000001
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x00519000 (C:\Users\Nikola Jovicic\Desktop\LGRP-OGC\samp-server.exe)
ntdll.dll A: 0x77C90000 - 0x77E1F000 (C:\WINDOWS\SYSTEM32\ntdll.dll)
aswhookx.dll A: 0x57C90000 - 0x57CBF000 (C:\Program Files\AVG\Antivirus\aswhookx.dll)
KERNEL32.DLL A: 0x77570000 - 0x77605000 (C:\WINDOWS\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x748A0000 - 0x74A78000 (C:\WINDOWS\System32\KERNELBASE.dll)
SHELL32.dll A: 0x75A70000 - 0x76DA3000 (C:\WINDOWS\System32\SHELL32.dll)
msvcrt.dll A: 0x777C0000 - 0x7787D000 (C:\WINDOWS\System32\msvcrt.dll)
cfgmgr32.dll A: 0x74DB0000 - 0x74DE8000 (C:\WINDOWS\System32\cfgmgr32.dll)
ucrtbase.dll A: 0x74780000 - 0x74897000 (C:\WINDOWS\System32\ucrtbase.dll)
shcore.dll A: 0x77890000 - 0x77918000 (C:\WINDOWS\System32\shcore.dll)
RPCRT4.dll A: 0x756A0000 - 0x75767000 (C:\WINDOWS\System32\RPCRT4.dll)
combase.dll A: 0x75770000 - 0x759B6000 (C:\WINDOWS\System32\combase.dll)
bcryptPrimitives.dll A: 0x74CC0000 - 0x74D17000 (C:\WINDOWS\System32\bcryptPrimitives.dll)
windows.storage.dll A: 0x74DF0000 - 0x753B6000 (C:\WINDOWS\System32\windows.storage.dll)
advapi32.dll A: 0x759E0000 - 0x75A58000 (C:\WINDOWS\System32\advapi32.dll)
sechost.dll A: 0x77920000 - 0x77963000 (C:\WINDOWS\System32\sechost.dll)
shlwapi.dll A: 0x77210000 - 0x77255000 (C:\WINDOWS\System32\shlwapi.dll)
GDI32.dll A: 0x77720000 - 0x77742000 (C:\WINDOWS\System32\GDI32.dll)
gdi32full.dll A: 0x74B00000 - 0x74C63000 (C:\WINDOWS\System32\gdi32full.dll)
msvcp_win.dll A: 0x74A80000 - 0x74AFC000 (C:\WINDOWS\System32\msvcp_win.dll)
USER32.dll A: 0x779D0000 - 0x77B3F000 (C:\WINDOWS\System32\USER32.dll)
win32u.dll A: 0x753C0000 - 0x753DA000 (C:\WINDOWS\System32\win32u.dll)
kernel.appcore.dll A: 0x74770000 - 0x7477E000 (C:\WINDOWS\System32\kernel.appcore.dll)
powrprof.dll A: 0x74700000 - 0x74745000 (C:\WINDOWS\System32\powrprof.dll)
profapi.dll A: 0x74750000 - 0x74764000 (C:\WINDOWS\System32\profapi.dll)
WSOCK32.dll A: 0x6F8F0000 - 0x6F8F8000 (C:\WINDOWS\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x77750000 - 0x777B6000 (C:\WINDOWS\System32\WS2_32.dll)
WINMM.dll A: 0x72F20000 - 0x72F44000 (C:\WINDOWS\SYSTEM32\WINMM.dll)
WINMMBASE.dll A: 0x72EC0000 - 0x72EE3000 (C:\WINDOWS\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x771E0000 - 0x77206000 (C:\WINDOWS\System32\IMM32.DLL)
streamer.DLL A: 0x58940000 - 0x589A7000 (C:\Users\Nikola Jovicic\Desktop\LGRP-OGC\plugins\streamer.DLL)
MSVCP140.dll A: 0x56800000 - 0x5686D000 (C:\WINDOWS\SYSTEM32\MSVCP140.dll)
VCRUNTIME140.dll A: 0x64F90000 - 0x64FA4000 (C:\WINDOWS\SYSTEM32\VCRUNTIME140.dll)
sscanf.DLL A: 0x10000000 - 0x1000C000 (C:\Users\Nikola Jovicic\Desktop\LGRP-OGC\plugins\sscanf.DLL)
MSVCR100.dll A: 0x78140000 - 0x781FF000 (C:\Users\Nikola Jovicic\Desktop\LGRP-OGC\MSVCR100.dll)
Whirlpool.DLL A: 0x001F0000 - 0x001FC000 (C:\Users\Nikola Jovicic\Desktop\LGRP-OGC\plugins\Whirlpool.DLL)
MSVCR80.dll A: 0x77390000 - 0x7742B000 (C:\WINDOWS\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.9348_none_d08c1480442bf1e1\MSVCR80.dll)
mswsock.dll A: 0x740C0000 - 0x74118000 (C:\WINDOWS\system32\mswsock.dll)
napinsp.dll A: 0x5E100000 - 0x5E111000 (C:\WINDOWS\system32\napinsp.dll)
pnrpnsp.dll A: 0x5E0E0000 - 0x5E0F6000 (C:\WINDOWS\system32\pnrpnsp.dll)
NLAapi.dll A: 0x71B50000 - 0x71B63000 (C:\WINDOWS\system32\NLAapi.dll)
winrnr.dll A: 0x61B70000 - 0x61B7C000 (C:\WINDOWS\System32\winrnr.dll)
DNSAPI.dll A: 0x73EE0000 - 0x73F74000 (C:\WINDOWS\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x77880000 - 0x77887000 (C:\WINDOWS\System32\NSI.dll)
IPHLPAPI.DLL A: 0x73EB0000 - 0x73EE0000 (C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL)
bcrypt.dll A: 0x74320000 - 0x7433B000 (C:\WINDOWS\SYSTEM32\bcrypt.dll)
rasadhlp.dll A: 0x6D440000 - 0x6D448000 (C:\Windows\System32\rasadhlp.dll)
Server_log: ----------
Loaded log file: "server_log.txt".
----------
SA-MP Dedicated Server
----------------------
v0.3.7-R2, (C)2005-2015 SA-MP Team
[12:11:01]
[12:11:01] Server Plugins
[12:11:01] --------------
[12:11:01] Loading plugin: streamer
[12:11:01]
*** Streamer Plugin v2.9.3 by Incognito loaded ***
[12:11:01] Loaded.
[12:11:01] Loading plugin: sscanf
[12:11:01]
[12:11:01] ===============================
[12:11:01] sscanf plugin loaded.
[12:11:01] (c) 2009 Alex "Y_Less" Cole
[12:11:01] 0.3d-R2 500 Players "dnee"
[12:11:01] ===============================
[12:11:01] Loaded.
[12:11:01] Loading plugin: Whirlpool
[12:11:01]
[12:11:01] ==================
[12:11:01]
[12:11:01] Whirlpool loaded
[12:11:01]
[12:11:01] ==================
[12:11:01]
[12:11:01] Loaded.
[12:11:01] Loaded 3 plugins.
[12:11:01]
[12:11:01] Ban list
[12:11:01] --------
[12:11:01] Loaded: samp.ban
[12:11:01]
[12:11:01]
[12:11:01] Filterscripts
[12:11:01] ---------------
[12:11:01] Loading filterscript 'mb.amx'...
[12:11:01]
|----------------------------------|
[12:11:01] Missing Bracket Finder
[12:11:01] by
[12:11:01] DraGoN FiRe
[12:11:01] |----------------------------------|
[12:11:01] Missing file "mbFile.lst", you must put preprocessed script file which
you want to check in scriptfiles folder and to name it "mbFile.lst".
[12:11:01] To get .lst file you need to compile your script with following params in
pawn.cfg "-l -;+ -(+ -\", without quotes.
[12:11:01] Loading filterscript 'JunkBuster.amx'...
[12:11:01] [junkbuster] Loading JunkBuster...
[12:11:01]
[12:11:01] [junkbuster] Current JunkBuster configuration:
[12:11:01] [junkbuster] - WeaponHack = 1
[12:11:01] [junkbuster] - MoneyHack = 1
[12:11:01] [junkbuster] - Jetpack = 0
[12:11:01] [junkbuster] - HealthHack = 1
[12:11:01] [junkbuster] - ArmourHack = 1
[12:11:01] [junkbuster] - DriveBy = 3
[12:11:01] [junkbuster] - Spam = 0
[12:11:01] [junkbuster] - CommandSpam = 0
[12:11:01] [junkbuster] - BadWords = 1
[12:11:01] [junkbuster] - CarJackHack = 1
[12:11:01] [junkbuster] - TeleportHack = 1
[12:11:01] [junkbuster] - MaxPing = 500
[12:11:01] [junkbuster] - SpectateHack = 1
[12:11:01] [junkbuster] - Blacklist = 1
[12:11:01] [junkbuster] - IpBans = 1
[12:11:01] [junkbuster] - TempBans = 1
[12:11:01] [junkbuster] - SpawnKill = 3
[12:11:01] [junkbuster] - CapsLock = 1
[12:11:01] [junkbuster] - 3DSpeed = 0
[12:11:01] [junkbuster] - MaxSpeed = 230
[12:11:01] [junkbuster] - AdminImmunity = 0
[12:11:01] [junkbuster] - Advertisement = 0
[12:11:01] [junkbuster] - FreezeUpdate = 0
[12:11:01] [junkbuster] - SpawnTime = 10
[12:11:01] [junkbuster] - CheckpointTeleport = 1
[12:11:01] [junkbuster] - Airbrake = 150
[12:11:01] [junkbuster] - TankMode = 1
[12:11:01] [junkbuster] - WarnPlayers = 0
[12:11:01] [junkbuster] - SingleplayerCheats = 1
[12:11:01] [junkbuster] - MinFPS = 0
[12:11:01] [junkbuster] - DisableBadWeapons = 1
[12:11:01] [junkbuster] - CBug = 16
[12:11:01] [junkbuster] - AntiBugKill = 1
[12:11:01] [junkbuster] - NoReload = 20
[12:11:01] [junkbuster] - NoReloadForSawnOff = 4
[12:11:01] [junkbuster] - ActiveGMC = 2
[12:11:01] [junkbuster] - GMCBan = 0
[12:11:01] [junkbuster] - ServerSideHealth = 1
[12:11:01] [junkbuster] - CheckVMPos = 0
[12:11:01] [junkbuster] - QuickTurn = 1
[12:11:01] [junkbuster] - VehicleTeleport = 1
[12:11:01] [junkbuster] - Wallride = 170
[12:11:01] [junkbuster] - DisplayTextDraw = 1
[12:11:01] [junkbuster] - AFK = 0
[12:11:01] [junkbuster] - PickupTeleport = 1
[12:11:01] [junkbuster] - FlyHack = 40
[12:11:01] [junkbuster] - JunkBusterChrome = 0
[12:11:01] [junkbuster] - CheckWalkAnims = 1
[12:11:01] [junkbuster] - ReportMoneyHack = 1
[12:11:01] [junkbuster] - SpeedhackAdvanced = 20
[12:11:01] [junkbuster] - Joypad = 0
[12:11:01] [junkbuster] - ArmedVehicles = 0
[12:11:01] [junkbuster] - VehicleRepair = 8
[12:11:01] [junkbuster] - TuningHack = 1
[12:11:01] [junkbuster] - PayForGuns = 0
[12:11:01] [junkbuster] - SpawnVehicles = 0
[12:11:01] [junkbuster] - MaxTotalWarnings = 15
[12:11:01] [junkbuster] - TooManyWarningsAction = 1
[12:11:01] [junkbuster] - AirbrakeDetection = 1
[12:11:01] [junkbuster] - SpeedhackDetection = 0
[12:11:01]
[12:11:01] [junkbuster] 0 IP-bans have been loaded.
[12:11:01] [junkbuster] 0 temporary bans have been loaded.
[12:11:01] [junkbuster] 0 whitelist entries have been loaded.
[12:11:01] [junkbuster] 0 blacklist entries have been loaded.
[12:11:01] [junkbuster] 42 bad words have been loaded.
[12:11:01] [junkbuster] 4 forbidden weapons have been loaded.
[12:11:01] [junkbuster] JunkBuster has been configurated.
[12:11:01] [junkbuster] JunkBuster (v11) has successfully been loaded.
[12:11:01] Loading filterscript 'cameditor.amx'...
[12:11:01]
--------------------------------------
[12:11:01] CamEditor by Drebin
[12:11:01] --------------------------------------
[12:11:01] Loaded 3 filterscripts.
[12:11:01]
[12:11:01]
[12:11:01]
[12:11:01] =======================================
[12:11:01] | |
[12:11:01] | YSI version 3.09.0684 |
[12:11:01] | By Alex "Y_Less" Cole |
[12:11:01] | |
[12:11:01] =======================================
[12:11:01]
[12:11:01]
[12:11:01]
[12:11:02] Test!
[12:11:02] Y_INI | Zona 0 ucitana
[12:11:02] Y_INI | Zona 1 ucitana
[12:11:02] Y_INI | Zona 2 ucitana
[12:11:02] Y_INI | Zona 3 ucitana
[12:11:02] Y_INI | Zona 4 ucitana
[12:11:02] Y_INI | Zona 5 ucitana
[12:11:02] Y_INI | Zona 6 ucitana
[12:11:02] Y_INI | Zona 9 ucitana
[12:11:02] Y_INI | Zona 10 ucitana
[12:11:02] Y_INI | Zona 12 ucitana
[12:11:02] Y_INI | Zona 13 ucitana
[12:11:02] Y_INI | Rent vozilo ID 1 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 2 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 3 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 4 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 5 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 6 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 7 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 8 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 9 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 10 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 11 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 12 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 13 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 14 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 15 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 16 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 17 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 18 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 19 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 20 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 21 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 22 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 23 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 24 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 25 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 26 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 27 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 28 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 29 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 30 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 31 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 32 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 33 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 34 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 35 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 36 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 37 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 38 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 39 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 40 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 41 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 42 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 43 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 44 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 45 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 46 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 47 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 48 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 49 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 50 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 51 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 52 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 53 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 54 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 55 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 56 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 57 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 58 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 59 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 60 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 61 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 62 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 63 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 64 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 65 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 66 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 67 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 68 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 69 ucitano!
[12:11:02] Y_INI | Rent vozilo ID 70 ucitano!
[12:11:06] Ucitana server podesavanja.
[12:11:06] Ucitana podesavanja organizacija.
[12:11:06] |=========================================|
[12:11:06] | Legacy Gaming RolePlay |
[12:11:06] | Scripter: DzOnI |
[12:11:06] | Maper: None |
[12:11:06] | Script Version LG:RP v1.0 by DzonI |
[12:11:06] | Community Owner Escobar |
[12:11:06] |=========================================|
[12:11:06] Number of vehicle models: 105
[12:11:25] [connection] 127.0.0.1:61130 requests connection cookie.
[12:11:26] [connection] incoming connection: 127.0.0.1:61130 id: 0
[12:11:27] [join] DzOnI has joined the server (0:127.0.0.1)
[12:11:27] timer-48
[12:11:35] timer-49
[12:12:04] Svim online korisnicima racuni uspesno sacuvani...
[12:13:01] Svim online korisnicima racuni uspesno sacuvani...
[12:13:39] timer-17
[12:13:57] Svim online korisnicima racuni uspesno sacuvani...
[12:14:55] Svim online korisnicima racuni uspesno sacuvani...
[12:15:32] [chat] [DzOnI]: a
[12:15:53] Svim online korisnicima racuni uspesno sacuvani...
[12:16:14] timer-17
[12:16:51] Svim online korisnicima racuni uspesno sacuvani...
[12:17:52] Svim online korisnicima racuni uspesno sacuvani...
[12:18:49] Svim online korisnicima racuni uspesno sacuvani...
[12:18:49] timer-17
Slika/video ingame problema(obavezno ako je ingame problem): //