ULX

Author Topic: New gmod update  (Read 3414 times)

0 Members and 1 Guest are viewing this topic.

Offline pa1n

  • Newbie
  • *
  • Posts: 19
  • Karma: -1
New gmod update
« on: November 01, 2012, 03:40:46 PM »
Moved timer module into engine. This breaks xgui but everything works command wise. I will start testing and see if timers still break TTT rounds
« Last Edit: November 01, 2012, 04:13:58 PM by pa1n »

Offline bender180

  • Full Member
  • ***
  • Posts: 217
  • Karma: 42
    • Benders Villa
Re: New gmod update
« Reply #1 on: November 01, 2012, 06:40:52 PM »
i really hope this does fix the round hang issue i had a weapon that i couldn't fix breaking the timers.
Also on the downside xgui wont open at all with the update like you said
Made community pool and community bowling and for the life of me couldn't tell you why they are popular.
Also made the ttt ulx commands.

Offline Stickly Man!

  • Ulysses Team Member
  • Hero Member
  • *****
  • Posts: 1270
  • Karma: 164
  • What even IS software anymore?
    • XGUI
Re: New gmod update
« Reply #2 on: November 01, 2012, 09:13:53 PM »
For Megiddo:
It looks like the UCLAuthed and ULibLocalPlayerReady hooks either aren't working at all, or something changed such that my functions hooked to those no longer get called. I got similar results with a listen server. Oddly enough, it seems to get called fine in single player (ignoring the Player Not Authed errors shortly after). I was able to get XGUI to start up by manually calling the correct functions in order.

For everyone else:
I just barely pushed a build that changes a few things in how XGUI starts up, but it still doesn't fully fix the problem. However, you are now able to run this command in your client console after joining a server to get XGUI working:
Code: [Select]
lua_run_cl xgui.init()
Do note that this requires your server to have sv_allowcslua set to 1. Hopefully this holds while we try and figure out what the real problem is.
Join our Team Ulysses community discord! https://discord.gg/gR4Uye6

Offline spykr

  • Newbie
  • *
  • Posts: 1
  • Karma: 1
Re: New gmod update
« Reply #3 on: November 02, 2012, 12:10:22 AM »
For Megiddo:
It looks like the UCLAuthed and ULibLocalPlayerReady hooks either aren't working at all, or something changed such that my functions hooked to those no longer get called. I got similar results with a listen server. Oddly enough, it seems to get called fine in single player (ignoring the Player Not Authed errors shortly after). I was able to get XGUI to start up by manually calling the correct functions in order.

For everyone else:
I just barely pushed a build that changes a few things in how XGUI starts up, but it still doesn't fully fix the problem. However, you are now able to run this command in your client console after joining a server to get XGUI working:
Code: [Select]
lua_run_cl xgui.init()
Do note that this requires your server to have sv_allowcslua set to 1. Hopefully this holds while we try and figure out what the real problem is.

A little bit hacky, but I just have
Code: [Select]
timer.Simple(5, function() if IsValid(ply) then ply:SendLua("xgui.init()") end end)
in my spawn function now.

By the way, with your new update if the server changes map with no players on it throws a hissy fit with a bunch of errors, but it doesn't seem to break anything.
« Last Edit: November 02, 2012, 12:13:23 AM by spykr »

Offline Stickly Man!

  • Ulysses Team Member
  • Hero Member
  • *****
  • Posts: 1270
  • Karma: 164
  • What even IS software anymore?
    • XGUI
Re: New gmod update
« Reply #4 on: November 02, 2012, 11:07:48 AM »
Thanks spykr! I was planning on adding a timer to call it in xgui itself, but I didn't have adequate enough time to check for any issues. (XGUI does weird things when init'd twice. That and it might work fine on some machines and explode on slower machines.)

As for the mapchange errors-- we'll look into it.
Join our Team Ulysses community discord! https://discord.gg/gR4Uye6

Offline kaos2100

  • Newbie
  • *
  • Posts: 13
  • Karma: 2
Re: New gmod update
« Reply #5 on: November 02, 2012, 01:34:34 PM »
Code: [Select]
hook.Add("PlayerInitialSpawn", "xguitemp", function(ply)
timer.Simple(5, function() if IsValid(ply) then ply:SendLua("xgui.init()") end end)
end)

Would that work?

Offline Stickly Man!

  • Ulysses Team Member
  • Hero Member
  • *****
  • Posts: 1270
  • Karma: 164
  • What even IS software anymore?
    • XGUI
Re: New gmod update
« Reply #6 on: November 02, 2012, 02:47:44 PM »
According to reports, Garry has pushed a new update to Garry's Mod that fixes gamemode hooks not being called. So, it should be working now! Can anyone confirm for me?
Join our Team Ulysses community discord! https://discord.gg/gR4Uye6

Offline kaos2100

  • Newbie
  • *
  • Posts: 13
  • Karma: 2
Re: New gmod update
« Reply #7 on: November 02, 2012, 03:09:05 PM »
Garry's update made it worse for me as a linux user.

Offline JackYack13

  • Newbie
  • *
  • Posts: 28
  • Karma: -1
Re: New gmod update
« Reply #8 on: November 03, 2012, 06:13:35 AM »
XGUI works for me now.