[Release] /help, /rules, /cmds [HRC] [1.4]

No those are just common commads to save people from editing more. All it does is have /help /rules and /cmds.

The HTML update is a bit away. I’m most likely going to add a couple new commands before that. If anyone has more suggestions for commands please reply…

1 Like

Say because i’ve been looking for that command for ages.

I do have one on my server.

1 Like

@StatePatrolRP_ADMIN Heres mine

3 Likes

Thank you.
(20 chars)

1 Like

When is it all going to be HTML, not all of us has photoshop

2 Likes

Hopefully soon. I just started back at school so don’t have all the time atm. No time schedule on it. I’ll most likely update for a couple new commands before moving to HTML.

1 Like

Change Log - 1.1

  • Added /sinfo
  • Renamed Images to right order
  • Cleaned up some code

Soon

  • /pinfo - Player info that will display ping, session playtime, server uptime, etc.
  • All wording through HTML and not Pictures.
1 Like

/Sinfo? [20 characters]

1 Like

server info. In the OP there is a screen shot

1 Like

Sweet thank you so much for this

1 Like

Change Log - 1.2

  • Fixed conflict with Simple Disclaimer
3 Likes

no problem. If you need anything let me know.

1 Like

Looks Nice. Good work. Have a snail :mascot:

1 Like

Just an update I recently started the HTML side of the script so hopefully I will finish soon. There is not time / date of the new update. I will be testing this extensively on different PC’s and monitor sizes.

I’m at school so has very limited time to work on this. If anyone has a modified version they have already made through it on the GitHub as a new fork.

2 Likes

Thanks heaps I changed the /sinfo to /admincmds, which has the admin commands.

Are you still working on the html version / update? photoshop is a pain. When are you releasing it??? I really want it???

1 Like

That’s pretty cool I did a simular thing with the admin window.

I’m working on the html update slowly, its being a pain with positioning the text per screen res. Its getting there thjough.

Also no need for the multiple question marks and begging.

2 Likes

ok, thank you. can’t wait…

1 Like

I added this to client.lua to get the help page to display on spawn but it doesn’t show on spawn?

AddEventHandler('onClientMapStart', function()
  Citizen.CreateThread(function()
    local display = true
    local startTime = GetGameTimer()
    local delay = 60000 -- ms

    TriggerEvent('help:display', true)

    while display do
      Citizen.Wait(1)
      if (GetTimeDifference(GetGameTimer(), startTime) > delay) then
        display = false
        TriggerEvent('help:display', false)
      end
      if (IsControlJustPressed(1, 51)) then
        display = false
        TriggerEvent('help:display', false)
      end
    end
  end)
end)

It does show if I type /help but just not on spawn

(Thank you for this great release by the way :smile:)

What you want is this trigger :wink:

AddEventHandler('playerSpawned', function(spawn)
    TriggerServerEvent('myResource:playerSpawn', spawn.x, spawn.y, spawn.z)
end)