Vice City: Multiplayer

News & Announcements => VC:MP Announcements => Topic started by: Stormeus on Aug 14, 2019, 04:04 AM

Title: 0.4.7 Public Beta starting 2019-08-17
Post by: Stormeus on Aug 14, 2019, 04:04 AM
We'll be hosting a two day long public beta starting Saturday the 17th at midnight GMT for version 0.4.7, the next major release of VC:MP. Because of major changes made to the netcode in this version, we want to host a public beta before release to test these changes on a large scale.

For this public beta, we'll be running two servers over the weekend:
Note that these servers will have both a 0.4.7 test version and their current 0.4.6 counterparts. Stats on the test servers won't be saved.

The addresses for the test servers will be announced around midnight on each day. The server changelog will also be posted on final release, but in the meantime here are the changes you'll find in the client:
[noae]
Quote
  • Added support for HTTP downloads.
    • A proxy can be used by setting the option net_dl_proxy to the proxy's URI, e.g. /setconfig net_dl_proxy http://192.0.0.7 or /setconfig net_dl_proxy socks4://192.0.0.8:1080. The proxy can be disabled by using /setconfig net_dl_proxy 0.
  • Major netgame revisions. Specifically:
    • The netgame used to spend bandwidth on updates for entities that hadn't changed. The ped and vehicle sync have been changed so that the client and server now only exchange information about changes in state, rather than trying to send full entity states on every frame.
    • Vehicle processing has been rewritten to make remote vehicles move more smoothly and accurately.
    • The client and server will now make an effort to process packets as soon as they arrive instead of at predetermined tick intervals, which should make sync slightly more responsive.
    • The client should be better at prioritizing which packets to process and send.
  • This update reimplements or incorporates some game fixes from other mods.
    • From the Road Reflections Fix (https://www.gtagarage.com/mods/show.php?id=22398):
      • Fixed reflections not rendering on rainy roads.
    • From SilentPatch (https://cookieplmonster.github.io/2018/05/20/silentpatch-r29/):
      • Added a config option, game_enabletrails, that determines whether to enable post-processing visual effects and motion blur like the PS2 version.
      • The game no longer disables the disk cache on HDDs and SSDs, which should result in smoother model streaming.
      • Fixed light glow shadows underneath pickups.
    • From ThirteenAG's Widescreen Fix Pack (https://thirteenag.github.io/wfp):
      • Incorporated the widescreen fixes into the client. To enable the widescreen fixes, use /setconfig game_widescreen 1. To disable them, use /setconfig game_widescreen 0.
      • Shooting is now accurate when players with different camera FOVs shoot each other.
    • From SkyGFX (http://gta.rockstarvision.com/skygfx/skygfx.html):
      • Fixed poorly rendered edges on trees, fences, and other objects with transparent edges.
  • Added support for custom cull zones (https://www.grandtheftwiki.com/CULL).[nb]To use custom cull zones, add a file named maps/cullzones.xml to the server store with the following format:
    <?xml version="1.0" encoding="ASCII" ?>
    <cullzones>
        <!-- Disable rain -->
        <cull min_x="-200.0" min_y="-200.0" min_z="-10.0" max_x="200.0" max_y="200.0" max_z="40.0" flags="8" />
    </cullzones>
    [/nb]
  • Added support for replacing the surface traction table by adding a maps/surface.dat file.
  • Changes to client-side scripting:
    • Added the following read-only properties:
      • Hud.IsEnhancedWidescreen() - true if ThirteenAG's widescreen fixes are active, false otherwise.
      • Hud.AspectRatio() - gets the aspect ratio that the HUD is drawn at. Without ThirteenAG's widescreen fixes, this can be 4:3 (widescreen off) or 16:9 (widescreen on). When the widescreen fix is enabled, this is the window width divided by height.
      • World.Hour() - gets the current in-game hour
      • World.Minute() - gets the current in-game minute
      • Player.Streamed - true if a player is streamed for, or is, the local player; false otherwise
      • Player.Team - gets the player's team ID
      • Player.Weapon - gets a player's current weapon ID; returns -1 if the player is not streamed
      • Player.LoadedAmmo - gets the amount of ammo in the player's clip; returns -1 if the player is not streamed
      • Player.TotalAmmo - gets the total amount of ammo the player has; returns -1 if the player is not streamed
      • Player.ClipSize - gets the size of the clip for the player's current weapon; returns -1 if the player is not streamed
      • Player.Angle - gets the player's rotation; returns NaN if the player is not streamed
    • Added the following read-write properties:
      • Player.Money - gets or sets the local player's money, returns -1 for other players; does not update the server-side value
      • Hud.GetWantedLevel() - gets the local player's wanted level
      • Hud.SetWantedLevel(wantedLevel) - sets the local player's wanted level; effect is cosmetic only and does not update the server-side value
    • Added GUILabel.FitToText() and GUIButton.FitToText(), which will resize their bounds to fit the text they contain.
  • Enabled setting water level on maps with custom water tiles.
  • Weapons can now be used as objects in XML map files.
  • The multiplayer DLLs are now smaller, resulting in shorter download times and slightly improved performance.
  • Miscellaneous CPU utilization improvements.
  • Fixed a crash caused by enabling color tags for a GUIElement and then reassigning text to it.
  • Fixed a crash caused by deleting a GUIElement after clicking on it.
  • Fixed a crash caused by the logging system for client-side scripts.
  • Fixed the game crashing when trying to reconnect in the middle of a RakNet file transfer.
  • Fixed memory errors when viewing the map from the menu or exiting a vehicle as a passenger which could cause rare, unrelated crashes later.
  • Players headshot in cars now have properly synced death animations.
  • Related to the above patch, also fixed a sync issue where vehicles would move on their own if the driver was shot in the head and played the falling out animation.
  • Fixed 2dfx elements and arcade sounds not being hidden when the entire Vice City world is hidden.
  • Fixed players with fall damage immunity being knocked down and taking damage anyway.
  • Fixed remote players becoming desynced if they appear to be hit by a shotgun, even if that shot missed on their screen.
  • Fixed players being able to use helicannons or fire Hunter missiles while marked as frozen or unable to attack.
  • Fixed a race condition where the client tried to create custom objects before loading the models, causing "Failed to load model" errors to appear.
  • Fixed the vehicle horn not being synced for non-emergency vehicles.
  • Fixed players being able to enter vehicles as passengers while their controls are disabled.
  • Fixed an issue where players could appear to carjack vehicle passengers if a vehicle door was blocked.
  • Fixed not being able to fire missiles in custom MVL vehicles with Hunter weapon attachments.
  • Fixed boat wakes being rendered at the wrong height when the water level is changed from the default.
  • Fixed cull zones not being reset when hiding the entire VC world. This would cause issues like bridge fly-under camera effects and no rain in parts of the map where VC had these properties.
  • Fixed some objects becoming undeletable when moved or rotated.
  • Fixed fires and projectiles being removed around players who are frozen.
  • Fixed the camera glitching when spectating a player while drunk visuals are enabled.
  • Fixed not being able to pass null to GUI.SetFocusedElement to remove focus from all GUI elements.
  • Fixed an issue where vehicles could momentarily have the wrong light status flags when streamed in.
  • Fixes for build mode:
    • Fixed World.FindPlayer, World.FindLocalPlayer, or World.FindVehicle crashing the game.
    • Fixed a crash caused by toggling checkboxes.
    • Fixed GUI skins not loading.
    • Fixed dofile() not working correctly when the game first loads.
    • Fixed XML map objects not being removed when reloading custom content.
    • Fixed PlayerShoot and other events not being called in build mode.
    • Fixed not being able to read the stream passed to Debug.ClientData.
  • Updated third-party components.
[/noae]
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: NewK on Aug 14, 2019, 04:14 AM
This CTF server will have a few changes compared to the regular 0.4.6 version of CTF.

It will be using some new 0.4.7 features like 3D arrows, which will be set on players who capture the flag and they will also be bleeding (like in singleplayer), so you can follow the blood trails of a player with the flag to find out its location. All downloads will also be done over HTTP.
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: D4rkR420R on Aug 14, 2019, 07:20 AM
Based from the whole thread, you never seem to disappoint me. Looking forward seeing the new improvements.

BTW, when you're refering to HTTP downloads, does that mean a big improvement in terms of downloading server files efficiently?
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: DizzasTeR on Aug 14, 2019, 07:27 AM
Quote from: DarkRaZoR^ on Aug 14, 2019, 07:20 AMBTW, when you're refering to HTTP downloads, does that mean a big improvement in terms of downloading server files efficiently?

If the server owner sets up his server store files on a fast web server then yes, the difference will be noticeable, however the factors of ping and web server quality also kicks in to determine if the downloads will be faster or not.
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: Stormeus on Aug 14, 2019, 07:38 AM
Other things to consider with HTTP downloads are that some ISPs prioritize HTTP traffic over UDP gaming, which improves transfer speed. It also means the VC:MP server itself isn't spending time on the file transfer, which should avoid degradation during file transfers.

That said, I do have this note in the server change log:
QuoteBecause HTTP uses TCP, each separate file download will start relatively slow until the appropriate download speed is determined. This is often still faster than RakNet, but for optimal performance consider bundling as much of your content in as few 7z archives as possible

Assuming, anyway, that the HTTP host is close to the game host, if not on the same machine.
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: krystianoo on Aug 14, 2019, 08:42 AM
thank you stormeus and maxorator looking forward to the beta O0
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: Aaron on Aug 14, 2019, 09:11 AM
Seems like a productive update I can look into, job well done! ;D
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: rww on Aug 14, 2019, 09:39 AM
Anyway, this isn't all of new features and bug fixes (here is only from client-side) ;)
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: EightyVice on Aug 14, 2019, 10:12 AM
This is amazing! These netgame updates are great. Are you implementing interpolation in the sync?
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: MatheuS on Aug 14, 2019, 10:32 AM
Great updates.




I still waited for NPCs
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: KakaroT on Aug 14, 2019, 10:51 AM
finally a fix for wsf. gud update.

ah shit, i don't even play this game.
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: NicusorN5 on Aug 14, 2019, 11:23 AM
This is amazing!
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: Firecum on Aug 14, 2019, 12:27 PM
"Some hope of good update"
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: Sebastian on Aug 14, 2019, 02:02 PM
Quote from: Zurix on Aug 14, 2019, 10:12 AMThis is amazing! These netgame updates are great. Are you implementing interpolation in the sync?

I believe this is the way it already works, isn't it, actually, @Stormeus ?
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: HunTinG on Aug 14, 2019, 02:53 PM
QuoteHud.IsEnhancedWidescreen() - true if ThirteenAG's widescreen fixes are active, false otherwise.
Hud.AspectRatio() - gets the aspect ratio that the HUD is drawn at. Without ThirteenAG's widescreen fixes, this can be 4:3 (widescreen off) or 16:9 (widescreen on). When the widescreen fix is enabled, this is the window width divided by height.

you mean we can use widescreen fix patches by thirteenAG?
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: NewK on Aug 14, 2019, 03:14 PM
Quote from: HunTinG on Aug 14, 2019, 02:53 PM
QuoteHud.IsEnhancedWidescreen() - true if ThirteenAG's widescreen fixes are active, false otherwise.
Hud.AspectRatio() - gets the aspect ratio that the HUD is drawn at. Without ThirteenAG's widescreen fixes, this can be 4:3 (widescreen off) or 16:9 (widescreen on). When the widescreen fix is enabled, this is the window width divided by height.

you mean we can use widescreen fix patches by thirteenAG?
Don't use the widescreen fix .asi because the shots/hitboxes will be wrong in multiplayer, you can just use this command to enable and disable widescreen:
Quote from: Stormeus on Aug 14, 2019, 04:04 AM
  • Incorporated the widescreen fixes into the client. To enable the widescreen fixes, use /setconfig game_widescreen 1. To disable them, use /setconfig game_widescreen 0.
  • Shooting is now accurate when players with different camera FOVs shoot each other.
You'll have to restart the game after changing it.
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: Thomas on Aug 14, 2019, 03:16 PM
I'm still waiting for NPC feature.

Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: HunTinG on Aug 14, 2019, 03:49 PM
ok thx for ur info newk
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: Stormeus on Aug 14, 2019, 03:57 PM
Quote from: Thomas on Aug 14, 2019, 03:16 PMI'm still waiting for NPC feature.

You'll be waiting for a long time then.
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: HunTinG on Aug 14, 2019, 05:38 PM
one more question @newk @stormeus will /setconfig game_widescreen 1 support ANY 16:9 resolution? even higher than monitor display? (res upscale)
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: Stormeus on Aug 14, 2019, 05:51 PM
Quote from: HunTinG on Aug 14, 2019, 05:38 PMone more question @newk @stormeus will /setconfig game_widescreen 1 support ANY 16:9 resolution? even higher than monitor display? (res upscale)

We just used the source code (https://github.com/ThirteenAG/WidescreenFixesPack) that was available for the widescreen fix, so if your resolution doesn't break singleplayer with the widescreen ASI then it should work.
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: HunTinG on Aug 14, 2019, 05:54 PM
thx for the info
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: NicusorN5 on Aug 14, 2019, 08:29 PM
Quote from: Stormeus on Aug 14, 2019, 03:57 PM
Quote from: Thomas on Aug 14, 2019, 03:16 PMI'm still waiting for NPC feature.

You'll be waiting for a long time then.
:(
For anyone trying to make NPCs there's a method:
1.) You will need afk or players that 'host' the NPCs
2.) Use player.SetAnim(0,1) and player.Angle = something to make the 'NPC's walk
3.) Implement the two function above using timers and comparing distance to define the path...
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: Milko on Aug 18, 2019, 09:02 AM
WE WANTS VOODOO HYDROS
LOW RIDER IN MOTHER.
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: NicusorN5 on Aug 18, 2019, 09:48 AM
Quote from: Milko on Aug 18, 2019, 09:02 AMWE WANTS VOODOO HYDROS
LOW RIDER IN MOTHER.
wat
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: HunTinG on Aug 18, 2019, 10:01 AM
lol why the fuck would u need hydraulics for a voodoo car?
the hydraulics will make all servers crash and voodoo unusable
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: krystianoo on Aug 18, 2019, 05:40 PM
well what he meant was for them to work without crashing.
I know Gudio achieved this on his XRR server though I have never asked him how, but most likely by a .dll module.

e: although personally I believe there are much more pressing issues to press than voodoo hydraulics. besides, after the release of 0.4.7 the devs DEFINIETLY deserve a bit of a holiday don't you think? :D
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: HunTinG on Aug 18, 2019, 05:55 PM
fuck hydraulics, just fix bugs and release no need of more reasons for bugs to come up and more delay
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: Xmair on Aug 19, 2019, 05:12 AM
Aren't hydraulics already possible through some vehicle properties? I made Voodoo hydraulics in VCCNR v2.0.
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: HunTinG on Aug 19, 2019, 03:10 PM
yes exactly no need of messing developer's work just enable through sv properties blablabala release 0.4.7 without this shit it makes no difference it cavn be added in a later version
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: NicusorN5 on Aug 19, 2019, 03:12 PM
Please post in the newer post about the postponing. Ok, bye, thanks. *runs*
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: Sebastian on Aug 19, 2019, 06:16 PM
Quote from: Xmair on Aug 19, 2019, 05:12 AMAren't hydraulics already possible through some vehicle properties? I made Voodoo hydraulics in VCCNR v2.0.

Other way than setting vehicle's rotation ?
Just curious.
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: Hendrix on Aug 19, 2019, 09:47 PM
I wish you could configure the Tickrate in VCMP as in other games
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: Xmair on Aug 20, 2019, 08:40 AM
Quote from: Sebastian on Aug 19, 2019, 06:16 PM
Quote from: Xmair on Aug 19, 2019, 05:12 AMAren't hydraulics already possible through some vehicle properties? I made Voodoo hydraulics in VCCNR v2.0.

Other way than setting vehicle's rotation ?
Just curious.
Yeah just the relative turning speed.
Title: Re: 0.4.7 Public Beta starting 2019-08-17
Post by: HunTinG on Aug 20, 2019, 10:17 AM
so is there a release date yet???