Ulysses Stuff > Releases

ULX Physgun freeze - FIXED - UPDATED

<< < (2/5) > >>

Son_Of_Flynn:

--- Quote from: lynx on March 13, 2015, 02:20:35 AM ---That'd be more a question for the Developer Chat forum, but heres your answer:

Where you have

--- Code: ---if( ent:IsPlayer() ) then 
--- End code ---

If you add

--- Code: --- and pl:IsAdmin()
--- End code ---

To make it

--- Code: ---if( ent:IsPlayer() and pl:IsAdmin() ) then 
--- End code ---

Then it would only run the freeze code if the player holding the other player is an admin. With ent:IsAdmin() it checks if the player being physgunned is an admin so it would return false all the time (unless they are an admin) causing it to not work.


To the OP, I do suggest creating it into an addon format rather than posting code and telling people to put it in autorun. The best way to do it (in my opinion) would be this:
Create a folder in addons called phys_freeze.
In phys_freeze make the following folder structure: /lua/ulx/modules/server/
Save the code into a file called phys_freeze.lua into the server folder.
Create a zip of the phys_freeze folder and upload it as an attachment to your original post.

--- End quote ---

You could also do:


--- Code: --- pl:IsUserGroup("YOURUSERGROUP")
--- End code ---

To only enable it for certain usergroups, however the group must be able to physgun players.

So in the end it will look like this:


--- Code: --- if( ent:IsPlayer() and pl:IsUserGroup("example") ) then
--- End code ---

Stranger Danger:

--- Quote from: Son_Of_Flynn on March 13, 2015, 07:04:29 AM ---You could also do:


--- Code: --- pl:IsUserGroup("YOURUSERGROUP")
--- End code ---

To only enable it for certain usergroups, however the group must be able to physgun players.

So in the end it will look like this:


--- Code: --- if( ent:IsPlayer() and pl:IsUserGroup("example") ) then
--- End code ---

--- End quote ---

Perfect thanks, I didn't realize ent was the object being phys gunned. Thanks for the help and update.

silentkiller101:
So this makes it so you can freeze players with the Physgun?

aidanjohns921:
Very nice script however my console likes to pop out this message whenever I physgun a player regardless of freezing or not (because of letting go is under the same function for unfreezing)


--- Code: ---[ERROR] lua/autorun/ulxphysgun.lua:25: attempt to call method 'DisallowSpawning' (a nil value)
  1. fn - lua/autorun/ulxphysgun.lua:25
   2. unknown - addons/ulib/lua/ulib/shared/hook.lua:179

--- End code ---

Son_Of_Flynn:

--- Quote from: aidanjohns921 on March 16, 2015, 02:09:40 PM ---Very nice script however my console likes to pop out this message whenever I physgun a player regardless of freezing or not (because of letting go is under the same function for unfreezing)


--- Code: ---[ERROR] lua/autorun/ulxphysgun.lua:25: attempt to call method 'DisallowSpawning' (a nil value)
  1. fn - lua/autorun/ulxphysgun.lua:25
   2. unknown - addons/ulib/lua/ulib/shared/hook.lua:179

--- End code ---

--- End quote ---

Thanks for this, it should be fixed now.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version