Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 31/10/24 in all areas

  1. Thank you for your help, I managed to fix this issue - and probably prevented some upcoming issues - by adding the following to the ACL: <acl> <group name="ServerScript"> <acl name="ServerScript"></acl> <object name="resource.*"></object> </group> <acl name="ServerScript"> <right name="function.loadstring" access="true"></right> ... </acl> </acl> Have a great day, thanks again @IIYAMA for your help and time!
    1 point
  2. Utilize getPedTask para saber se o jogador está fazendo a animação de entrar no veículo. (Client-Side)
    1 point
  3. That is why you can capture those by surrounding the fromJSON with a table: local result = {fromJSON(data)} Although this solution might be more optimised: local result = fromJSON("[" .. data .. "]") It changes your data string to: [[ { "id": 49, "username": "framef318", "email": "[email protected]" }, { "id": 50, "username": "framef3188", "email": "[email protected]" } ]] Which helps returning everything inside of 1 variable, instead of multiple.
    1 point
×
×
  • Create New...