Krash · Neptune Sleeps

  • Krash
  • Member since
  • Last active (3,600 visits)

Comments

  • There's no need to forward port 80, just the UDP port your server is bound to (default 28000). You don't need to shut down your firewall, just make sure the Tribes2.exe isn't being blocked. The master server performs the same query a player looking to join your server would run, so if it responds with this message it means…
  • Hmm. I suspect that could be an issue with the BBCode parser on legacy posts -- there wasn't a lot of testing on editing them when adding compatibility for (most of) the features from the old forum formatting, just on making sure they rendered more or less correctly. Seemed to work fine when I tried editing that post…
  • I think the flood/spam control you ran into assumed they were new discussions, which was set to like 3 within 60 seconds and a 2 minute block if you passed it. Didn't realize they applied that same check to edits, but it's adjusted a bit now. You've also been set to verified, so it should bypass those spam checks for you.…
  • There's a group of people who play every day.
  • If you've extracted the "War2003" mod folder into your GameData directory, you'd launch it using: Tribes2.exe -online -mod War2003 or Tribes2.exe -dedicated -mod War2003 If you've run base or classic previously however, you'll also want to delete any .dso files in your base folder -- otherwise you'll likely have issues…
  • Keep in mind the address returned by the automatic detection mechanism is what the master server will be querying by default (and therefore what it will attempt to show to players), so if it differs due to your network configuration, you should really be setting $Host::BindAddress to the static public IP rather than…
  • The comment regarding setting this to $Host::BindAddress is specifically relating to server hosts with multiple possible external addresses to bind to; support for this is included by default in the current release (the host must have the variable set in their prefs/ServerPrefs.cs), and if it's not set on a server with…
  • Unless you're running the server with the "-nologin" flag (which sets it to run in LAN mode), the server will automatically start the heartbeat timer. Running StartHeartbeat(); will send a new heartbeat and reset the timer, if you need to see an immediate result.
  • There's a server called 'Discord Pub' that fills up regularly. It's currently at 24 players. If you look at the post from @BattleLore below, they're also running a stats system that'll show the matches being played each night and the players involved:
  • There were a few people who went through and removed some of their old posts years back, this must've been one of them... Not certain of the specifics, but I assume the confirmation was that the ren_scripts.vl2 included in one of those common mod packs was the final "2.1b" server script release. I'm not sure whether it…
  • When the server is online (as it is currently), this is almost always caused by a firewall blocking the game or your antivirus manipulating traffic through its "HTTP Checking" or "Link scanning" feature. You'll want to add an exception for Tribes2.exe to allow that traffic to go through. In rare cases it can also be caused…
  • Might be a bit of a tricky one to track down, but it's probably still out there somewhere. Pretty sure the only copy I personally have saved is a later version, from when it had to be downloaded for the clientside mech models.
  • ? Goon Haven was a Classic server
  • Hmm, guess the embed's getting squished in there... will have to check that later.
  • No signatures for now. Maybe later, but they're a bit of a hassle to deal with, and add an insecure/mixed content warning to the page every time they include images linked from insecure sites.
  • The attachment date would be fairly easy to display, download counts possibly a little less -- right now this system simply isn't currently tracking new views in the database (the old counts are still backed up), but I believe it does still do some routing that could be hooked into to add it. A files section isn't out of…
  • The old forum was unfortunately a few years past its best before date, so it was up to the point where it wouldn't really have been a good idea to keep running anymore. Now, having put a few weekends into getting everything exported and converted to their formats and working with Vanilla code, I wouldn't say it's the most…
  • You gotta hit the "Show personal skins" toggle under the "Game" tab in your options. It's technically possible for servers to override your selection and force team skins only, so you won't necessarily see your custom skins in every case, but I'm not sure anyone is blocking them these days.
  • The game is built around the concept of mods, and the vast majority of common gameplay mods are serverside: i.e. you, the client, don't need to download them. Map packs however are often required downloads because the game doesn't have a way to transfer files; if a server requires any downloads it will generally give you…
  • Which plugin are you using? The best one to use with Photoshop these days is SuperPNG: https://www.fnordware.com/superpng/ You'll want to make sure when opening a skin to select "Alpha appears as a separate channel"
  • ai.drop() is in principle the correct call in that it runs a set of cleanup routines specific to AI tasks, and I wouldn't recommend using ai.delete() directly because it won't actually trigger the expected client disconnection cleanup process; you'll end up with an orphaned player, name tag, etc. In practice however…
  • You don't want an old version of the patch. You want this thread: https://www.tribesnext.com/forum/index.php/topic,2095.0.html
  • The error others in this thread were hitting was caused by an issue with the game's handling of connection errors; if changing the renderer helps you, it'll be something unrelated. From your description -- assuming you're crashing on completing load of these maps -- my first guess (particularly if you have vertex lighting…
  • I was under the impression that most people playing on modern 64-bit systems today found running it on WINE to be plenty stable and easy to set up -- and I didn't find it particularly crashy when I was doing the same on my laptop with a fairly recent WINE version a few years ago. Haven't used the Loki client enough to…
  • You shouldn't be setting the server address anywhere yourself if you're behind a NAT (particularly not using $Host::BindAddress, which is intended for systems with multiple network interfaces to restrict binding) -- the address the master server and anyone on the internet should use is that already assigned to your router…
  • If they're both being automatically allocated addresses from the same nat device's DHCP server, and you haven't explicitly configured it otherwise, they should both be in the same range, and a different router wouldn't change much other than potentially making it easier to see/control the assignments... Which addresses are…
  • An unreasonable IP challenge source error is a client-initiated abort that indicates the address the server thinks you're connecting from a different address than your client says it is -- which could generally happen on joining LAN servers if either a) the server's external address (if you're connecting to it) differs…
  • The client's crashing on the first join attempt? Have you tried connecting from both the external and internal network addresses of the server? In certain configurations one or the other won't work, but usually you won't get a crash unless disconnected multiple times in sequence. In most cases, the first attempt should…
  • Once master.tribesnext.com receives a heartbeat, it sends a T2 info ping back to the server on the specified host port and expects a response in a reasonable timeframe. If it doesn't get the response it'll report back with this error. If you type echo($IPv4::InetAddress); it'll show the address that the master server…