Jump to content

NodSaibot

Totem Arts Staff
  • Posts

    2371
  • Joined

Everything posted by NodSaibot

  1. Check your game logs. Installation Directory ~\UDKGame\Logs\Launch.log
  2. Oh, sorry I read that wrong. Are your ports open? Firewall blocking UDK.exe?
  3. https://wiki.renegade-x.com/wiki/Server Read here and let me know if you have any problems still
  4. Download the new version. When is the last time you downloaded?
  5. The thing is, I can make servers with people... make one 64 and put it into 2 32 servers.
  6. So what I am reading is you’ll seed CT’s 64 player count server. You can decide where you want to play. Also, not everyone agreed for a 40 player count server on the FPI mod team, pretty sure it was like a 4/3 vote to let it be tested. The main point of FPI wasn’t to monopoly, it was to allow more than just CT, after AGN left RenX. And I’m not saying people are wrong for liking 64 player count servers, that’s just not the way the game was meant to be played. That’s not realistically possible on UDK. Unfortunately we don’t have the liberty of deciding what is possible and what isn’t possible in RenX sometimes. My biggest and most painful issue with 64 player servers is my ping and FPS. If it’s at 64 players or near that, I will get close to 200 ping and no higher than 40 fps. Meanwhile at 40 players, I can get 60 steady fps, and my regular 130 ping
  7. If anyone is wondering, this is basically the final version of the code I would be using. function OnMatchEnd() { local int i; local Rx_Controller c; local string NextMap; local Guid NextMapGuid; NextMap = string(WorldInfo.GetPackageName()); NextMapGuid = GetPackageGuid(name(NextMap)); if(`WorldInfoObject.Game.NumPlayers-1 > PlayersToSplitAt) foreach WorldInfo.AllControllers(class'Rx_Controller', c) { if(c != none && i == 0) { c.ClientTravel(ServerDestination, TRAVEL_Relative, false, NextMapGuid); i++; } else if (c != none && i > 0) i--; } }
  8. https://renegade-x.com/forums/topic/76285-optimal-max-player-count/?do=findComment&comment=171192
  9. Welcome back! See you in-game soldier! If you don't mind, where did you find the game from?
  10. Proficiency or knowledge in C# https://github.com/TotemArts/Rx_Launcher
  11. https://discord.gg/cXF3Uq2 -- FPI https://discord.gg/renegadex -- RenX
  12. Nope. The original launcher had an IRC client in it. It's quite simple I think, but I don't do C#, so I am of no use to our launcher. (BTW we are looking for a launcher dev)
  13. If you can't afford to run Discord, your PC probably won't run RenX
  14. I will put forth energy to seed a second server. But it's kinda unfair for the 40 players to have their game ruined by the other 24, if you want a 64 limit. (64 players fundamentally breaks the game, not to mention the huge ping increase of 50+ for some people, and insane FPS drops).
  15. FPI will be 40 players tomorrow, let's see how it goes.
  16. There is a team cooldown for airstrikes already. The cooldown can be increased on the map if it's a problem
  17. class FPI_ServerTravelMutator extends Rx_Mutator config(FPI); var config string ServerDestination; var config bool bAutomaticallySplitServer; var config int PlayerAmountSplit; function InitThisMutator() { `log("################################"); `log("[Server Travel Mutator] Successfully inited!"); `log("################################"); } function FPIServerTravel() { local string NextMap; local Guid NextMapGuid; local PlayerController c; local int i; local int PlayerCount; PlayerCount = `WorldInfoObject.Game.NumPlayers-1; NextMap = string(WorldInfo.GetPackageName()); NextMapGuid = GetPackageGuid(name(NextMap)); if(bAutomaticallySplitServer == true) { if(PlayerCount > PlayerAmountSplit || PlayerCount == PlayerAmountSplit) { foreach WorldInfo.AllControllers(class'PlayerController', c) { if(Rx_Controller(c) != none && i == 0) { C.ClientTravel(ServerDestination, TRAVEL_Relative, false, NextMapGuid); i++; `log("[FPI Server Travel] Sending someone to other server. Int: " $ i); } else if (Rx_Controller(c) != none && i > 0) { i--; `log("[FPI Server Travel] Not sending someone to other server. Int: " $ i); return; } } } } } FPI has had the functionality for sending people to other servers for quite some time. It would be extremely easy, with some coordination, to move any specific amount of people to wherever we need. The code is pretty rough, since it's old, but the main thing to look at is where ClientTravel is called.
  18. You would need to create or use mutators to change stuff like this. It is pretty simple to create them once you learn how to do it. A lot of this stuff is also doable via commands (give yourself VP or instant veteran promotions)
  19. Open the Apps & features page of your PC, and see which versions of VCRedist you have.
  20. 64 bit on launcher used to be a thing, but we were planning to drop support for the 64bit client, so we just removed it from the launcher.
  21. Currently there’s no way to make the launcher use 64-bit binaries. We are aware of the issues with the improper shut downs, thank you for letting us know you also have that issue. I’ve seen it a few times for myself, but it’s not consistent for me.
  22. Ouch. You could suggest changes to maps if you don’t like them
  23. Personally I use OBS, but the built in recorders for GPUs aren't terrible. (Shadowplay and whatever Radeon's version is)
×
×
  • Create New...