Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - rww

#1
Today, in 5 hours, I ported Portland (all objects) from III to VC-MP ;) And tested with @Sebastian :D



Now only timecyc, waterpro and vehicles ( I don't want convert skins, too much work with it... ).

Mod: https://gtaforums.com/topic/740638-grand-theft-auto-3d/
#2
Vehicle Showroom / Elegy from LCS-DM
Oct 10, 2020, 08:09 PM


Hey, I decided to share my convert Elegy from San Andreas for LCS-DM.




Download:


#3
Support / 100% CPU? rundll32.exe
Jun 19, 2019, 11:53 AM
I have a problem with VC-MP from few days. First thought - maybe a virus? But I ask on lu-dm discord about it, [LCK]Zen also have it. We did not install anything in last weeks. (btw. with single player is the same).

https://youtu.be/qcYMODw4E60

Anyone else have such a situation? And suggest to solved it? No, I don't want to reinstall system on my pc (now is Windows 7 x64).
#4
Description
Chat is invisible, when antialias is enabled.

Reproducible
Always

What you were doing when the bug happened
Setting game_antialias 1 in vcmp config

https://youtu.be/mYVzn6aCRlo

my config:

[spoiler]
game_antialias 1
game_menuonrestore 0
game_windowed 0
game_framereserve 10
game_showdebug 0
game_sensitivity 0.000000
game_sensitivity_ratio 1.200000
game_radar_scale 0.500000
game_radar_scalekey 120
game_streammem 512
game_passengerkey 86
game_reconattempts 3
game_reportcrashes 0
splash_loadbarbgcol FF9B327D
splash_loadbarfgcol FFFF96E1
con_fontname Verdana
con_fontgap 0
con_fontscale 1.0
con_numoflines 30
con_disappear 0
con_logging 3
con_fillcolour BB666666
con_openkey 112
con_resizekey 118
con_typeloc 0
con_scrollupkey 33
con_scrolldownkey 34
con_jumptopkey 36
con_jumpbottomkey 35
scb_scale 1.000000
scb_edgescale 0.400000
scb_edgecolour 66C0C0C0
scb_fillcolour 77000000
scb_captioncolour FF606060
scb_scorepingidcol FF808080
scb_underlinecolour 66FFFFFF
scb_highlightcolour 660066DD
scb_serverinfocolour AAFFFFFF
scb_countcolour 99FF0000
scb_versioncolour 44555555
scb_scrollbgcolour AA000000
scb_scrollbarcolour AABBBBBB
scb_openkey 9
scb_netstatskey 117
scb_scrollupkey 33
scb_scrolldownkey 34
tag_scale 0.900000
tag_quality 1
tag_maxdist 100.000000
tag_zoffset 1.400000
tag_fontname Arial
bar_bgenabled 0
bar_bgcolour 00606060
bar_armourcol 00AAAAAA
bar_armourxcol 004499FF
bar_healthcolmin 00FF0000
bar_healthcolmax 0000AA00
bar_healthxcol 004499FF
scr_capturekey 119
scr_directory
scr_shortmsg 1
scr_compression 5
cfg_version 4
[/spoiler]

What you think caused the bug
---
#5
Browser start vcmp without window to enter server password.
#6
All topics about Client-side scripting changes in one

1. https://forum.vc-mp.org/?topic=2719.0 (First public relase with GUI)

2. https://forum.vc-mp.org/?topic=3353.0 (GUI Skins)

3. https://forum.vc-mp.org/?topic=4710.0 (GUI Sprite rotation and scaling)

4. https://forum.vc-mp.org/?topic=4731.0 (Data/Time functions)

5. https://forum.vc-mp.org/?topic=4742.0 (GetTickCount changes)

6. https://forum.vc-mp.org/?topic=4660.0 (HUD / Custom Fonts)

7. https://forum.vc-mp.org/?topic=5873.0 (SetStadiumText / SetClipboardText etc..)
#7
Someone knows where I can upload radio stations from GTA:LCS? I mean, it must works on vc-mp by CreateRadio function. Many file hosts have protect for that, and urls doesn't works.

I need it for my LCS server. On current host, works only Head Radio, only once time :|
#8
It's possible to get a script line with error by catch(e)? Or another way for get errors with line to server chat?
#9
This is an example script. The server remembers the stats for 2 minutes after leaving the server. After 2 mins, score will be reset to value 0.

function onScriptLoad()
{
RememberPlrStats <- {};
PlayersScore <- {};
NewTimer("refresh",5000,0);
return 1;
}

function onPlayerJoin(player)
{
if (PlayersScore.rawin(p.UniqueID)) KillsA[p.ID] = PlayersScore.rawget(p.UniqueID);
if (PlayersScore.rawin(p.UniqueID)) PlayersScore.rawdelete(p.UniqueID);
if (RememberPlrStats.rawin(p.UniqueID)) RememberPlrStats.rawdelete(p.UniqueID);
return 1;
}

function onPlayerPart(player,reason)
{
RememberPlrStats.rawset(player.UniqueID,GetTickCount())
PlayersScore.rawset(player.UniqueID,player.Score);
return 1;
}

function onPlayerKill(killer,player,reason,body)
{
killer.Score ++;
return 1;
}

function refresh()
{
foreach (uid, tick in RememberPlrStats)
{
local count = GetTickCount() - tick;
print(count);
if (count > 120000) //in ms (here it's 2min)
{
if (PlayersScore.rawin(uid)) PlayersScore.rawdelete(uid);
if (RememberPlrStats.rawin(uid)) RememberPlrStats.rawdelete(uid);
}
}
}
#10
This is only a example, how to use one of new feature VC-MP.

function onPlayerModuleList(player,string)
{
Logs("Modules/"+player.IP+".txt","[PLAYER PLUGINS] ["+GetRealTime()+"] ["+player.ID+"] [ "+player.Name+" ] IP: [ "+player.IP+" ] UID: [ "+player.UniqueID+" ] UID2: [ "+player.UniqueID2+" ] \n"+s);
print("[PLAYER PLUGINS] ["+GetRealTime()+"] ["+player.ID+"] [ "+player.Name+" ] IP: [ "+player.IP+" ] UID: [ "+player.UniqueID+" ] UID2: [ "+player.UniqueID2+" ] \n"+s);
return 1;
}

function onPlayerCommand(player,cmd,text)
{
if (cmd) cmd = cmd.tolower();
local plr, veh = player.Vehicle;
if (text) plr = GetPlayer(text);

if (cmd == "getmodules" || cmd == "getplugins" || cmd == "getasi")
{
if (!text) ClientMessage("* Type: [#ffaa00]/"+cmd+" [Player ID]!",player,255,30,30,255);
else if (!plr) ClientMessage("* This player doesn't exist!",player,255,30,30,255);
else plr.RequestModuleList();
}
else ClientMessage("* This command doesn't exist!",player,255,30,30,255);
return 1;
}

function GetPlayer(plr)
{
if (plr)
{
if (IsNum(plr))
{
plr = FindPlayer(plr.tointeger());
if (plr) return plr;
else return 0;
}
else
{
plr = FindPlayer(plr);
if (plr) return plr;
else return 0;
}
}
else return 0;
}

function GetRealTime()
{
    local t = date(time());
    return format(@"%.2d/%.2d/%d - %.2d:%.2d:%.2d", t.day, t.month += 1, t.year, t.hour, t.min, t.sec);
}

function Logs(f,t)
{
local a = file(f,"a+");
foreach(char in t)
a.writen(char,'c');
a.writen('\n','c');
a = null;
}

And after type /getmodules [id/nick], server make a text file in Modules folder. Befoure use, create a new folder "Modules" in server folder. Case size must be the same!
#11
Support / player.SetMarker - how it works?
May 26, 2018, 03:12 PM
Today, I testing a player.SetMarker function and... Idk how it works.

In onPlayerSpawn event I put a line with SetMarker function. Every test I change a number, save script and reset server.

test 1:
player.SetMarker(22);
test 2:
player.SetMarker(0);
test 3:
player.SetMarker(1);
test 4:
player.SetMarker(3);

And I didn't see any difference?

[spoiler]

[/spoiler]

I want to change a player marker to another (icon)

Edit:

Sorry, I know now why doesn't work...
void CPlayer::SetMarker(int nDummy) { functions->TogglePlayerHasMarker(this->nPlayerId, 1); }
void CPlayer::RemoveMarker() { functions->TogglePlayerHasMarker(this->nPlayerId, 0); }

So, in VC-MP it's impossible to change a player blip (or vehicle)?
#12
Content Type: Map/Object
Original Author: R* / rww
Content Screenshots:

Before:



After:



Download links:



Alternative download link - from LU-DM site
#13
Description
GetHandlingData works only after setting SetHandlingData on custom veh. Before SetHandlingData, value of GetHandlingData for any rule (only for custom vehicles) is always 0.

Reproducible
Always

What you were doing when the bug happened
Getting a handling rule data.

What you think caused the bug
You know better than me.
#14
Custom wheels in your custom vehicle.

Programs:
- 3ds Max
- Kam's Max Scripts - http://www.gtagarage.com/mods/show.php?id=9172
- Magic.TXD - http://gtaforums.com/topic/851436-relopensrc-magictxd/

Video:
https://youtu.be/u3b07uXiBwU

Wheel scale we can change in name.xml file:

<wheelscale>float</wheelscale> recommended 0.65 - 0.75
#15
Closed Bug Reports / [CRASH] 6552D87A
May 27, 2017, 08:05 PM
Reproducible
Always

What you were doing at the time of the crash
Joining to the server (crash on LCS-DM, only for few players after today update). When all files are downloaded, custom map doesn't load, and tommy falls down.

What you think caused the crash
I don't know.
Edit:
Something with store files? Server without store files and scripts works without crash.
Edit2:
.wav files or radar folder.

Are you using the Steam version?
No.

Crash Report
Address: 6552D87A error C0000005
EAX 38203A93 EBX 14765C7C ECX 00000020 EDX 00000020
EBP 14769D14 ESP 0018F2C4 ESI 38203A73 EDI 0018F338
Stack:
0018F30C
00000020
65364B90
0018F338
38203A73
00000020
00000020
0018F338
14765C7C
65364587
14765C7C
0018F338
0018F30C
14765C78
14765C78
14769D14
11121190
65365AE8
00000020
0018F358
14769CC0
0018F344
0018F34C
0018F348
14765C78
00000000
00000000
14765C78
14765C78
0018F6B4
11121190
0000000D
756E6547
49656E69
6C65746E
000306C3
00100800
FE986383
65377EB7
14769D14
14769D1C
14765C78
14765C7C
0018F6B4
11121190
65447E3C
14765C7C
00000018
14E51CF0
0018F6B4
102165FC
00000000
102165FC
00000000
14564D24
00664BE2
14564D24
03D1BDC8
14564D24
0018F690
1343604C
00000000
03D1BDC8
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000015
FBF2E20B
00000001
0018F4C0
657A735E
15A6ED80
00000040
00000040
00000001
0C000000
00000015
00000015
00000000
0018F4B8
03C7E420
03C7E424
00000015
0C000000
00000000
00000015
65446ACD
11121190
00000018
27AD99B0
0018F6B4
102165FC
00000000
00000015
00000001
14564D58
0000008C
655C86FC
00000000
006279B7
03C7E420
00000080
00000080
00000001
00000000
15A6F84C
00000024
0018F53C
65C1FDB6
00A20000
00000000
15A6F84C
00A20000
15A6F84C
00000000
00A20000
0018F544
65C1FFF7
00A20050
0018F55C
65C1FC85
00000000
0000001F
00A20000
00000000
0018F574
65C42344
00000024
00000000
00000020
0000000F
0018F594
65525163
00A20000
00000000
00000020
00000000
00000000
14E51CF0
655E0774
00000000
0018F5E4
655818C6
14E51CF0
65581869
F6DF13B9
00000018
27AD99B0
102165FC
65C42899
00A20000
00000000
14E51CF0
0018F5AC
65C4290B
0018F6F0
6552DF80
93985825
FFFFFFFE
Net version 67000, build version 5929CA76.
00400000 S 00614000 N D:\Program Files (x86)\Rockstar Games\Grand Theft Auto Vice City\gta-vc.exe
112D0000 S 0004D000 N D:\Vice City Multiplayer\04rel004\bass.dll
21100000 S 0005C000 N D:\Program Files (x86)\Rockstar Games\Grand Theft Auto Vice City\mss32.dll
22100000 S 00014000 N D:\Program Files (x86)\Rockstar Games\Grand Theft Auto Vice City\mss\Mssa3d.m3d
22200000 S 00015000 N D:\Program Files (x86)\Rockstar Games\Grand Theft Auto Vice City\mss\Mssa3d2.m3d
22300000 S 00011000 N D:\Program Files (x86)\Rockstar Games\Grand Theft Auto Vice City\mss\Mssds3ds.m3d
22400000 S 00014000 N D:\Program Files (x86)\Rockstar Games\Grand Theft Auto Vice City\mss\Mssds3dh.m3d
22500000 S 00014000 N D:\Program Files (x86)\Rockstar Games\Grand Theft Auto Vice City\mss\Msseax.m3d
22600000 S 00016000 N D:\Program Files (x86)\Rockstar Games\Grand Theft Auto Vice City\mss\Mssfast.m3d
22D00000 S 00062000 N D:\Program Files (x86)\Rockstar Games\Grand Theft Auto Vice City\mss\Mssrsx.m3d
22E00000 S 00019000 N D:\Program Files (x86)\Rockstar Games\Grand Theft Auto Vice City\mss\msseax3.m3d
24600000 S 00011000 N D:\Program Files (x86)\Rockstar Games\Grand Theft Auto Vice City\mss\Reverb3.flt
26F00000 S 0002A000 N D:\Program Files (x86)\Rockstar Games\Grand Theft Auto Vice City\mss\Mp3dec.asi
5F450000 S 00DAE000 N C:\Windows\SYSTEM32\nvd3dum.dll
65250000 S 000C4000 N C:\Program Files (x86)\NVIDIA Corporation\3D Vision\nvSCPAPI.dll
65320000 S 00420000 N D:\Vice City Multiplayer\04rel004\vcmp-game.dll
65740000 S 00101000 N C:\Windows\SYSTEM32\d3d8.dll
659A0000 S 00270000 N C:\Windows\AppPatch\AcLayers.DLL
65C10000 S 00245000 N C:\Windows\AppPatch\AcGenral.DLL
67380000 S 00007000 N C:\Windows\SYSTEM32\DPAPI.dll
67390000 S 00045000 N D:\Vice City Multiplayer\04rel004\libpng15.dll
67400000 S 00007000 N C:\Windows\SYSTEM32\d3d8thk.dll
67870000 S 00084000 N C:\Windows\SYSTEM32\DSOUND.DLL
6A3B0000 S 000D9000 N C:\Windows\system32\ddraw.dll
6AAB0000 S 00009000 N C:\Windows\System32\winrnr.dll
6AAC0000 S 00010000 N C:\Windows\system32\NLAapi.dll
6AAD0000 S 00014000 N C:\Windows\system32\pnrpnsp.dll
6AAF0000 S 00010000 N C:\Windows\system32\napinsp.dll
6ACC0000 S 00014000 N C:\Windows\SYSTEM32\MSACM32.dll
6ACF0000 S 00054000 N C:\Windows\SYSTEM32\AUDIOSES.DLL
6AD50000 S 00008000 N C:\Windows\SYSTEM32\avrt.dll
6AD60000 S 0004D000 N C:\Windows\System32\MMDevApi.dll
6ADB0000 S 0000E000 N C:\Windows\SYSTEM32\SortServer2003Compat.dll
6ADC0000 S 0000E000 N C:\Windows\SYSTEM32\sfc_os.DLL
6BE20000 S 00030000 N C:\Windows\system32\dinput8.dll
6C260000 S 00003000 N C:\Windows\SYSTEM32\sfc.dll
6C270000 S 00012000 N C:\Windows\SYSTEM32\samcli.dll
6D0C0000 S 0002B000 N C:\Windows\SYSTEM32\WINMMBASE.dll
6D340000 S 0000A000 N C:\Windows\SYSTEM32\HID.DLL
6D570000 S 000A8000 N C:\Windows\system32\apphelp.dll
6F3A0000 S 0003F000 N C:\Windows\System32\fwpuclnt.dll
70690000 S 00007000 N C:\Windows\System32\rasadhlp.dll
706A0000 S 00074000 N C:\Windows\SYSTEM32\DNSAPI.dll
71910000 S 00007000 N C:\Windows\SYSTEM32\DCIMAN32.dll
71920000 S 00013000 N C:\Windows\SYSTEM32\MPR.dll
71940000 S 0003F000 N C:\Windows\system32\powrprof.dll
71B40000 S 00021000 N C:\Windows\SYSTEM32\WINMM.dll
71D50000 S 0001A000 N C:\Windows\SYSTEM32\dwmapi.dll
71D70000 S 00088000 N C:\Windows\SYSTEM32\UxTheme.dll
723A0000 S 00073000 N C:\Windows\SYSTEM32\SHCORE.DLL
72620000 S 0004A000 N C:\Windows\System32\mswsock.dll
726E0000 S 00008000 N C:\Windows\SYSTEM32\WINNSI.DLL
72730000 S 00020000 N C:\Windows\SYSTEM32\IPHLPAPI.DLL
74D80000 S 0000E000 N C:\Windows\SYSTEM32\DEVRTL.dll
74DC0000 S 00060000 N C:\Windows\SYSTEM32\WINSPOOL.DRV
74E20000 S 00008000 N C:\Windows\SYSTEM32\VERSION.dll
74E30000 S 00051000 N C:\Windows\SYSTEM32\bcryptPrimitives.dll
74E90000 S 00009000 N C:\Windows\SYSTEM32\CRYPTBASE.dll
74EA0000 S 0001D000 N C:\Windows\SYSTEM32\SspiCli.dll
74EC0000 S 00074000 N C:\Windows\SYSTEM32\clbcatq.dll
74F40000 S 00136000 N C:\Windows\SYSTEM32\combase.dll
75080000 S 00020000 N C:\Windows\system32\IMM32.DLL
750A0000 S 00046000 N C:\Windows\SYSTEM32\cfgmgr32.dll
750F0000 S 00011000 N C:\Windows\SYSTEM32\profapi.dll
75110000 S 001B6000 N C:\Windows\SYSTEM32\WININET.dll
75330000 S 00130000 N C:\Windows\SYSTEM32\KERNEL32.DLL
75460000 S 0001E000 N C:\Windows\SYSTEM32\DEVOBJ.dll
75480000 S 00050000 N C:\Windows\SYSTEM32\WS2_32.dll
754D0000 S 0008E000 N C:\Windows\SYSTEM32\OLEAUT32.dll
75560000 S 000FD000 N C:\Windows\SYSTEM32\GDI32.dll
75660000 S 00008000 N C:\Windows\SYSTEM32\NSI.dll
75670000 S 010C6000 N C:\Windows\SYSTEM32\SHELL32.dll
768C0000 S 00034000 N C:\Windows\SYSTEM32\sechost.dll
76900000 S 001AF000 N C:\Windows\SYSTEM32\SETUPAPI.dll
76BC0000 S 00119000 N C:\Windows\SYSTEM32\ole32.dll
76CE0000 S 000B1000 N C:\Windows\SYSTEM32\msvcrt.dll
76DA0000 S 001FA000 N C:\Windows\SYSTEM32\iertutil.dll
76FA0000 S 00040000 N C:\Windows\SYSTEM32\SHLWAPI.dll
76FE0000 S 0012B000 N C:\Windows\SYSTEM32\urlmon.dll
77110000 S 0001B000 N C:\Windows\SYSTEM32\USERENV.dll
77130000 S 000AC000 N C:\Windows\SYSTEM32\RPCRT4.dll
771E0000 S 000A7000 N C:\Windows\SYSTEM32\KERNELBASE.dll
77290000 S 000DD000 N C:\Windows\SYSTEM32\MSCTF.dll
77370000 S 00042000 N C:\Windows\SYSTEM32\WINTRUST.dll
773C0000 S 00012000 N C:\Windows\SYSTEM32\MSASN1.dll
773E0000 S 00116000 N C:\Windows\SYSTEM32\USER32.dll
77510000 S 00006000 N C:\Windows\SYSTEM32\PSAPI.DLL
775B0000 S 000AE000 N C:\Windows\SYSTEM32\ADVAPI32.dll
77660000 S 00182000 N C:\Windows\SYSTEM32\CRYPT32.dll
778B0000 S 00158000 N C:\Windows\SYSTEM32\ntdll.dll
#16
I can count vehicle speed (velocity function) in Client-Side, without Stream functions? I need example for it.
#17
Is possible to disable prints from client-side in console? It's very annoying for me ;x Someone can do this?

[spoiler]
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
Received x bytes of client data from rww.
...
[/spoiler]
#18
Reproducible
Always

What you were doing at the time of the crash
Enter to map in menu, and left to game, or disable and enable radar in display menu.

What you think caused the crash
Custom radardisc.png. Without this, all with custom radar/map works good.

Are you using the Steam version?
No.

Crash Report
Address: 00578725 error C0000005
EAX 00000000 EBX 00000300 ECX FF000000 EDX 00000000
EBP 00000003 ESP 0018F7E4 ESI 0018FCA0 EDI 00000002
Stack:
0018FC9C
0018FCA0
0018FCA0
0018FCA0
0018FCA0
5A5D2FC8
0049B34C
0018FC9C
0018FCA0
0018FCA4
69198602
00000000
29DE3100
29D97B00
00000000
00EB007F
00000011
44504000
29DE32C0
69381F31
DC7A97CD
7C5B46D4
00000000
00000000
00000000
437F0000
437F0000
437F0000
00000000
0018F948
291490E0
0018F8C0
691D23C2
0018F948
00000010
00000000
00000300
291490E0
313A3930
37310037
691D0036
00EB9300
00000001
00000000
7C5B46D4
0AC99BC0
00000000
09855D48
00E687E8
0000A000
00000000
29E37330
00000000
291490E0
0018F8E0
69194268
1EB49BC0
0018F948
00000000
1EAB5984
03178460
00000010
DC7A97CD
0018F99C
691D5643
00000001
29DE37E0
00000001
0018F9DC
00F4FE70
00000003
00000000
29149120
030DD860
0018F938
69198421
29DE37E0
00000001
691983AA
00000002
29D98AF0
29A33110
00001970
00000000
691C2314
00F4D800
0000087E
69381F31
00390030
0031003A
00000037
00370031
00000036
00000000
7F4A7C13
00F4D800
00000030
0018FA58
04D357B0
0018F9D0
691D23C2
0018FA58
00000010
69381F31
92EF35F9
F893671A
00000000
00000000
00000000
00000000
7F4A7C13
9E3779B9
00000000
0018FA98
0B1238E0
0018FA10
691D23C2
0018FA98
00000010
00000000
0B15FE94
0B1238E0
04D489A0
031EB8E0
04D48BC0
0018FAC8
0AC99BC0
0018FA40
F893671A
2A48D320
030A0800
2A48D500
0018FAEC
00EB9300
00000001
0B06E0C0
0DD2A460
0B1238E0
0018FA30
69194268
00ECE220
0018FA98
00000000
0B15FE94
03178460
00000010
92EF35F9
0018FAEC
0018FAEC
00000001
29DE0650
00000001
0018FB2C
00F4FE70
00000001
00000000
0B123920
030DD860
0018FA88
69198421
29DE0650
00000001
691983AA
00000001
29D94BA0
29A32B20
00001971
00000000
691C2314
00F4D800
00000006
03178460
00000000
00000001
29B76BF0
00000001
00001971
00000000
030DD860
00EB93B8
69199D8D
00F4D800
00EB93B8
03178460
29A32B20
00EC06F0
00E60F50
03178460
6938003E
00533D8C
03086600
030A37C0
0018FAB8
0000003E
0018FC90
694A41E8
00F4D800
03178460
0018FB74
692A7C9A
Net version 67000, build version 57A5343F.
00400000 S 00614000 N E:\copy\gta-vc.exe
11000000 S 0004D000 N E:\Vice City Multiplayer\04rel004\bass.dll
21100000 S 0005C000 N E:\copy\mss32.dll
22100000 S 00014000 N E:\copy\mss\Mssa3d.m3d
22200000 S 00015000 N E:\copy\mss\Mssa3d2.m3d
22300000 S 00011000 N E:\copy\mss\Mssds3ds.m3d
22400000 S 00014000 N E:\copy\mss\Mssds3dh.m3d
22500000 S 00014000 N E:\copy\mss\Msseax.m3d
22600000 S 00016000 N E:\copy\mss\Mssfast.m3d
22D00000 S 00062000 N E:\copy\mss\Mssrsx.m3d
22E00000 S 00019000 N E:\copy\mss\msseax3.m3d
24600000 S 00011000 N E:\copy\mss\Reverb3.flt
26F00000 S 0002A000 N E:\copy\mss\Mp3dec.asi
5A2E0000 S 00417000 N E:\Vice City Multiplayer\04rel004\vcmp-game.dll
5AB20000 S 00218000 N C:\Windows\AppPatch\AcGenral.DLL
5AD40000 S 00105000 N C:\Windows\system32\d3d8.dll
5B130000 S 00045000 N E:\Vice City Multiplayer\04rel004\libpng15.dll
62C20000 S 00030000 N C:\Windows\system32\dinput8.dll
63F10000 S 0000F000 N C:\Windows\system32\samcli.dll
63FA0000 S 00014000 N C:\Windows\system32\MSACM32.dll
673D0000 S 000E7000 N C:\Windows\system32\ddraw.dll
68AB0000 S 00151000 N C:\Windows\system32\nvspcap.dll
68C10000 S 00DAB000 N C:\Windows\system32\nvd3dum.dll
70FA0000 S 00377000 N C:\Windows\system32\nvapi.dll
71320000 S 00007000 N C:\Windows\system32\avrt.dll
71590000 S 00009000 N C:\Windows\system32\HID.DLL
716A0000 S 000F5000 N C:\Windows\System32\PROPSYS.dll
71E70000 S 00008000 N C:\Windows\System32\winrnr.dll
71E80000 S 00044000 N C:\Windows\system32\DNSAPI.dll
725C0000 S 00005000 N C:\Windows\System32\wshtcpip.dll
725D0000 S 0003C000 N C:\Windows\System32\mswsock.dll
72610000 S 00012000 N C:\Windows\system32\pnrpnsp.dll
72630000 S 00010000 N C:\Windows\system32\napinsp.dll
72640000 S 00010000 N C:\Windows\system32\NLAapi.dll
72660000 S 0000D000 N C:\Windows\system32\sfc_os.DLL
72680000 S 00003000 N C:\Windows\system32\sfc.dll
726E0000 S 0004C000 N C:\Windows\system32\apphelp.dll
729C0000 S 00013000 N C:\Windows\system32\dwmapi.dll
729E0000 S 00080000 N C:\Windows\system32\UxTheme.dll
72AC0000 S 00012000 N C:\Windows\system32\MPR.dll
72AF0000 S 0004F000 N C:\Windows\system32\webio.dll
72B40000 S 00058000 N C:\Windows\system32\WINHTTP.dll
72BA0000 S 0000B000 N C:\Windows\system32\profapi.dll
72BB0000 S 00017000 N C:\Windows\system32\USERENV.dll
72BD0000 S 00007000 N C:\Windows\system32\WINNSI.DLL
72BE0000 S 0001C000 N C:\Windows\system32\IPHLPAPI.DLL
73C40000 S 00032000 N C:\Windows\system32\winmm.dll
73E70000 S 000C6000 N C:\Program Files (x86)\NVIDIA Corporation\3D Vision\nvSCPAPI.dll
74260000 S 00039000 N C:\Windows\System32\MMDevApi.dll
742A0000 S 00025000 N C:\Windows\system32\powrprof.dll
742F0000 S 00006000 N C:\Windows\system32\d3d8thk.dll
746A0000 S 00036000 N C:\Windows\system32\AUDIOSES.DLL
746E0000 S 00072000 N C:\Windows\system32\DSOUND.DLL
74930000 S 00038000 N C:\Windows\System32\fwpuclnt.dll
74970000 S 00006000 N C:\Windows\system32\rasadhlp.dll
749D0000 S 00006000 N C:\Windows\system32\DCIMAN32.dll
74E20000 S 00009000 N C:\Windows\system32\VERSION.dll
74EF0000 S 0000C000 N C:\Windows\syswow64\CRYPTBASE.dll
74F00000 S 00060000 N C:\Windows\syswow64\SspiCli.dll
74F60000 S 000AC000 N C:\Windows\syswow64\msvcrt.dll
75010000 S 001FB000 N C:\Windows\syswow64\iertutil.dll
75210000 S 0008F000 N C:\Windows\syswow64\OLEAUT32.dll
752A0000 S 0002D000 N C:\Windows\syswow64\WINTRUST.dll
752D0000 S 00060000 N C:\Windows\system32\IMM32.DLL
75330000 S 000F0000 N C:\Windows\syswow64\RPCRT4.dll
75420000 S 0000C000 N C:\Windows\syswow64\MSASN1.dll
75430000 S 00C4A000 N C:\Windows\syswow64\SHELL32.dll
76080000 S 00057000 N C:\Windows\syswow64\SHLWAPI.dll
760E0000 S 0009D000 N C:\Windows\syswow64\USP10.dll
76210000 S 0000A000 N C:\Windows\syswow64\LPK.dll
76280000 S 00012000 N C:\Windows\syswow64\DEVOBJ.dll
762D0000 S 00136000 N C:\Windows\syswow64\urlmon.dll
76410000 S 00090000 N C:\Windows\syswow64\GDI32.dll
764A0000 S 0015C000 N C:\Windows\syswow64\ole32.dll
76600000 S 00005000 N C:\Windows\syswow64\PSAPI.DLL
76610000 S 0019D000 N C:\Windows\syswow64\SETUPAPI.dll
767B0000 S 000F5000 N C:\Windows\syswow64\WININET.dll
76940000 S 000A0000 N C:\Windows\syswow64\advapi32.dll
76A30000 S 00027000 N C:\Windows\syswow64\CFGMGR32.dll
76A60000 S 00035000 N C:\Windows\syswow64\WS2_32.dll
76AA0000 S 00100000 N C:\Windows\syswow64\USER32.dll
76BA0000 S 0011D000 N C:\Windows\syswow64\CRYPT32.dll
76CC0000 S 00046000 N C:\Windows\syswow64\KERNELBASE.dll
76D10000 S 00083000 N C:\Windows\syswow64\CLBCatQ.DLL
76DA0000 S 00019000 N C:\Windows\SysWOW64\sechost.dll
76DC0000 S 00110000 N C:\Windows\syswow64\kernel32.dll
76ED0000 S 000CC000 N C:\Windows\syswow64\MSCTF.dll
77370000 S 00006000 N C:\Windows\syswow64\NSI.dll
773A0000 S 00180000 N C:\Windows\SysWOW64\ntdll.dll


And... Radardisc.png

#19
Skin Showroom / Maria Latore skinpack
Oct 14, 2016, 12:06 PM
Maria "Lakurwa" Latore skinpack.

All 3 skins converted by me.



#20



Polski LCS-DM (Liberty City Stories) by LU-DM Team
IP: 188.68.236.24:9999
Slots: 32
Gamemode: DM / FR / RP
Location: Poland
Owners: @rww, @Piterus
Testers: @Xenon, @Kunio, @ermaccer, @Waluta,
@VerC_Etti, Cement, JarzabPL, Genesis, Vandi, Jabu, Seed1212, @Stoku
Website: https://lu-dm.eu.org
Discord: https://discord.gg/PFwem6J




Custom things progress:

Map progress:



* indust.ide (Portland Island) - 100%.
* commer.ide (Staunton Island) - 100%.
* fortstaunton.ide (Staunton Island) - 100%.
* suburb.ide (Shoreside Vale) - 100%.
* Interiors - 95%.

Map team: @rww, @Piterus, @Kunio, JarząbPL, voyo, @Xenon



Weapons:

* Brass Knuckles @rww
* Baseball Bat @rww
* Nightstick @rww
* Machete @rww
* Meat Cleaver @rww
* Chisel @rww , @ermaccer
* Knife @rww , @ermaccer
* Hockey Stick @rww , @ermaccer
* Axe @rww , @ermaccer
* Katana @rww
* Chainsaw @rww
* Glock17 @rww
* .357 @rww
* Shotgun @rww , @ermaccer
* Stubby Shotgun @rww
* SPAS 12 @rww
* Mac 10 @rww
* Tec-9 @rww
* Micro SMG @rww
* MP5 @rww , @ermaccer
* M4 @rww
* AK-47 @rww , @ermaccer
* M60 @rww
* Flamethrower @rww
* Minigun @rww
* Rocket Launcher @rww
* Sniper Rifle @rww
* Laser Sighted Sniper Rifle @rww
* Grenades @rww
* Molotovs @rww
* Remote Grenades @rww
* Tear Gas @rww
* Camera
* Detonator




Skins:

Toni Clothes:
* Casual Clothes - @rww
* Leone's Suit - @ermaccer
* Overalls - @rww
* Avenging Angel's fatigues - @rww
* Chauffeur's Clothes - @rww
* Lawyer's suit - @rww
* Tuxedo - @rww
* 'The King' jumpsuit - @rww
* Cox Mascot suit - @rww @ermaccer
* Underwear - @rww
* Hero Garb - @rww
* Dragon Jumpsuit - @rww
* Antonio - @rww
* Sweats - @rww
* Goodfella - @rww
* Wiseguy - @rww

Others:
* Salvatore Leone - @ermaccer , @rww
* Vincenzo Cilli - @ermaccer , @rww
* Joseph Daniel O'Toole - @ermaccer , @rww
* Maria Latore - @ermaccer , @rww
* Massimo Torini - @rww
* Donald Love - JarząbPL , @rww
* Miles O'Donovan - @ermaccer , @rww , @Xenon
* Paulie Sindacco - JarząbPL , @rww
* Leon McAffrey - JarząbPL , @rww
* Toshiko Kasen - @Xenon
* Cheryl - @rww
* Giovanni Casa - JarząbPL , @rww
* Cedric Fotheringay - JarząbPL , @rww
* Miguel - @ermaccer , @rww
* Mickey Hamfists - @rww
* Ray Machowski - @ermaccer , @rww
* Phil Cassidy - @ermaccer
* Kazuki Kasen - JarząbPL , @rww
* Avery Carrington - @ermaccer , @rww
* 8-Ball - JarząbPL , @rww
* Roger C. Hole - @ermaccer , @Xenon
* Ned Burner
* Jane Hopper
* Uncle Leone



Vehicles:
* Demios SP - @Xenon , @rww
* Landstalker - @Xenon
* Idaho - @Xenon
* Stinger - @rww
* Perennial - @Xenon
* Sentinel - @rww
* Patriot -@rww
* Stretch - @Xenon, @rww
* Manana - @rww, @Xenon
* Infernus - @rww, @rww
* Blista - @Xenon
* Cheetah - @Xenon
* Moonbeam - @Xenon
* Esperanto - @Xenon
* Kuruma - @rww
* Bobcat - @Xenon
* Mr. Whoopee - @Xenon
* BF Injection - @rww (removed bcs problems with entering)
* Hearse - @ermaccer, @rww
* Banshee - @rww
* Stallion - @rww
* RC Bandit - @Xenon
* Hellenbach GT - @rww
* Phobos VT - @rww
* V8 Ghost - @rww
* Angel - @Xenon
* Freeway - @rww
* Faggio - @rww
* PCJ-600 - @rww
* Sanchez - @rww
* Avenger - MAJEST1C_R3, @rww
* Manchez - MAJEST1C_R3, @rww
* Pizza Boy - MAJEST1C_R3, @rww
* Noodle Boy - MAJEST1C_R3, @rww
* RC Goblin
* RC Raider
* Hunter
* Maverick
* Police Maverick - @Xenon
* VCN Maverick
* Dodo - @ermaccer, @rww
* Linerunner - @Xenon
* Pony - @Xenon
* Mule - @Xenon
* Securicar - @Xenon
* Bus - @Xenon
* Coach - @Xenon
* Rumpo - @rww
* Panlantic - @Xenon
* Flatbed - @Xenon
* Yankee - @Xenon
* Toyz - @Xenon
* Campaign Van - @Xenon
* Ballot Van - @Xenon
* Firetruck - @Xenon
* Trashmaster - @Xenon
* Ambulance - @Xenon
* FBI Cruiser - @Xenon
* Taxi - @Xenon
* Police - @Xenon
* Enforcer - @Xenon
* Rhino
* Barracks - @Xenon
* Cabbie - @rww
* Bickle '76 - @rww
* Triad Fish Van - @Xenon
* Mr Wongs - @Xenon
* Leone Sentinel - @rww
* Yardie Lobo - @rww
* Yakuza Stinger - @rww
* Diablo Stallion - @Xenon, @rww
* Cartel Cruiser - @rww
* Hoods Rumpo XL - @Xenon
* Thunder-Rodd - @Xenon, @rww
* Sindacco Argentino - @rww
* Forelli Exsess - @ermaccer , @rww
* Speeder - @ermaccer , @rww
* Reefer
* Predator
* Jester* - @rww (Vehicle was to be in LCS, but finalny has been deleted).
* Rancher* - @ermaccer
* Sabre* - @Xenon
* Venturas* - @rww (Civilian version of LVPD Car).
* Bullion* -  MMProductions , @rww
* Coquette* (VCS Banshee) - @Xenon , @rww
* Elegy* - @rww (The same history like Jester).



Special content:
* Carcols.dat - JarząbPL
* Timecyc - HM128 (with small edit by @rww)
* Waterpro.dat - @Xenon , @rww

* Radar map & radar disc - @rww
* Menu map - @rww

* All radio stations from GTA LCS - @Xenon

* GTA 2 Multiplayer Map - @ermaccer
* GTA San Andreas Interiors - @rww



Screenshots:















https://youtu.be/xQwzSwBp5Mg



BIG Thanks for LU-DM Team ;)