Author Topic: An add-on is restricting onActivate to admins  (Read 739 times)

I have an add-on installed that is causing onActivate to be restricted to admins, and I have no clue what it is. I tried installing Restricted Events, but it didn't solve it with it enabled or disabled. At first, I figured it was environmental events, but disabling it still caused onActivate to be restricted. Any idea what add-on this could be?
Add-On List: http://pastebin.com/sDdXhDSH

There's also an add-on making items impossible to pick up if they aren't yours in a minigame.

There's also an add-on making items impossible to pick up if they aren't yours in a minigame.
I want to know hat it is.

Okay, onactivate is admin only because of Event_Owner doing this:

Code: [Select]
registerInputEvent("fxDTSBrick","onActivate","Self fxDTSBrick" TAB "Player Player" TAB "Client GameConnection" TAB "MiniGame MiniGame" TAB "Owner(Player) Player" TAB "Owner(Client) GameConnection",1);

Notice the 1 at the end which should be a 0 or left out.

Okay, onactivate is admin only because of Event_Owner doing this:

Code: [Select]
registerInputEvent("fxDTSBrick","onActivate","Self fxDTSBrick" TAB "Player Player" TAB "Client GameConnection" TAB "MiniGame MiniGame" TAB "Owner(Player) Player" TAB "Owner(Client) GameConnection",1);

Notice the 1 at the end which should be a 0 or left out.
Aha, got to go test if disabling it makes onActivate work.
Thanks! :D