Ulysses

Ulysses Stuff => General Chat & Help and Support => Topic started by: fackelkind on October 29, 2006, 09:13:48 PM

Title: ulx.CONCOMMAND( "noclip")
Post by: fackelkind on October 29, 2006, 09:13:48 PM
Hey there,

well I try to integrate my TeamSuite in ULib/ULX. That works perfectly, it reads the Ulib flags now to specify a users team.
But I have troubles with one of my addons: Noclip.
Since ULX has an own !noclip chatcommand it collides with my one.
Is there a way to unhook this chatcommand? If so, how? And have ULX1 this chatcommand too? How to unhook it there?
Title: Re: ulx.CONCOMMAND( "noclip")
Post by: fackelkind on October 29, 2006, 10:10:14 PM
I figure it out myself. Its not nice, but it works. I do on each !noclip call:
Code: [Select]
                        if ULib and ULib.sayCmds and ULib.sayCmds["!noclip"] then
                                ULib.sayCmds["!noclip"] = nil
                        end
Title: Re: ulx.CONCOMMAND( "noclip")
Post by: Golden-Death on November 08, 2006, 03:50:39 PM
You could of course just change the noclip chat command to something else.
Title: Re: ulx.CONCOMMAND( "noclip")
Post by: JamminR on November 09, 2006, 07:59:23 PM
True. Several non-Source games use 'ghost' in the console instead of noclip.
Might try that