Author Topic: Looking for certain scripts compatible with Excl's JailBreak 7  (Read 2211 times)

0 Members and 1 Guest are viewing this topic.

Offline Devyn

  • Newbie
  • *
  • Posts: 6
  • Karma: -1
Looking for certain scripts compatible with Excl's JailBreak 7
« on: February 21, 2016, 09:57:56 PM »
If possible, please supply links to both free and paid versions of each (unless you can help me make it from scratch):

Force team swap ULX command (guards, prisoners, spectators)
Respawn ULX command
Report system with ULX command
Configurable damage logs for staff
Configurable MotD frame with multiple tabs

I'm okay with anything from Scriptfodder, Garrysmods, Ulyssesmod, Facepunch, and possibly Github.

Thanks

Offline feldma

  • Newbie
  • *
  • Posts: 47
  • Karma: 5
  • 5696 hours in Gmod and counting!
    • Mega-Strike Network
Re: Looking for certain scripts compatible with Excl's JailBreak 7
« Reply #1 on: February 21, 2016, 11:28:47 PM »
Half of this stuff... you can probably find by searching it up..

Let me quote JamminR from 2014:
Quote
First, I'd recommend searching our RELEASES section of the forum...many commands there, some might work in Jailbreak.
Second, search for keywords in our DEVELOPER'S CORNER of the forum. Many non-release but good code discussions there.
In fact, since this seems to be more a code discussion than a 'where do I find stuff for ULX' topic now, moving to dev corner.

I'm pretty sure I've seen the exact same give and respawn discussions here on the forum before, and am reasonably sure you might find other code examples.

For respawn command, try:
Code: [Select]
function ulx.respawn( target_ply )
 
        if not target_ply:Alive() then
                target_ply:Spawn()
        end
 
ulx.fancyLogAdmin( calling_ply, true, "#A respawned #T" )
end
 
local respawn = ulx.command( "Fun", "ulx respawn", ulx.respawn, "!respawn", true )
respawn:addParam{ type=ULib.cmds.PlayersArg }
respawn:defaultAccess( ULib.ACCESS_ADMIN )
respawn:help( "Respawns a player" )

I literally grabbed that code from a page on these forums..  namely http://forums.ulyssesmod.net/index.php?topic=7454.0

It might work, it might not. I'm pretty sure it should.
Solving 50% of people's questions by searching it up on google.

Trying to think of a cool idea to code, so I can inspire myself to code. If you want something done, please message me!

An Error Has Occurred!

array_keys(): Argument #1 ($array) must be of type array, null given