Jump to content

Et-win

Members
  • Posts

    1,390
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Et-win

  1. No description or something at all: https://community.multitheftauto.com/ind ... ls&id=9644 https://community.multitheftauto.com/ind ... ls&id=9646 https://community.multitheftauto.com/ind ... ls&id=9647 https://community.multitheftauto.com/ind ... ls&id=9643 https://community.multitheftauto.com/ind ... ls&id=9642 https://community.multitheftauto.com/ind ... ls&id=9641 https://community.multitheftauto.com/ind ... ls&id=9640 https://community.multitheftauto.com/ind ... ls&id=9639 Or lets say, none of what she/he uploads has a description. DONE
  2. I don't actually think it has been removed, because it says to me it's private. It actually makes me curious why.
  3. Et-win

    Scripter

    Ok: No I will not pm or add you. lol. If people want, then they will add or reply
  4. Add the resource to ACL group Admin or make another group with 'function.addAccount' and then attach the resource to the group.
  5. Et-win

    [HELP] script

    As soon as someone enters the marker, then set a timer with the time you want. Also use triggerClientEvent to send the time of the timer to the client. (1 time, 'onMarkerHit' only) Set a timer on the client again and then make another function with event 'onClientRender' which sets the progressbar with 'getTimerDetails' and 'guiProgressBarSetProgress'. As soon as someone leaves the marker (With 'onMarkerLeave') then check or someone is still in, if not, then stop the time ('killTimer') and trigger to the clients to do the same by them. (Remember to STOP event 'onClientRender'). Use the setTimer at SERVER-SIDE to start the attack/war/etc., not the client's.
  6. No it will not detect. When your resource starts it will get placed in another map (Or memory?) and it will run from there. Meanwhile you can change files, but when you refresh your server/restart the resource, then the changed files will be taken. (Edited because of my horrible explaining )
  7. getResourceInfo(resource, "type")
  8. I didn't understand ANYTHING you said.
  9. Et-win

    [HELP] BASE

    This has nothing to do with Admin Panel, and you mean Team's I guess..........
  10. Et-win

    [HELP] BASE

    You can add your own groups to it. Add those who you want to be able to open it. Or do you mean you want to work without these groups but with accounts?
  11. Et-win

    [HELP] BASE

    Lol, none of our scripts ever did...
  12. Et-win

    [HELP] BASE

    I do it like that. There are other ways. Don't know out of my head now which ones.
  13. Et-win

    ffs music

    https://forum.multitheftauto.com/viewtopic.php?f=167&t=73773 ?
  14. Et-win

    [HELP] BASE

    Replace: accountname = getAccountName (getPlayerAccount(tPlayer)) if isObjectInACLGroup ( "user." .. accountname, aclGetGroup ( "Admin" ) ) With: local isAllowed = false for placeNumber, stringData in ipairs(acceptedGroups) do accountname = getAccountName (getPlayerAccount(tPlayer)) if isObjectInACLGroup ( "user." .. accountname, aclGetGroup ( stringData ) ) isAllowed = true end end if (isAllowed == true) then --Code... Add: acceptedGroups = { "Group", "Another Group", "More", "Mooooore", } You can add more in the acceptedGroups Table.
  15. Et-win

    GUI Issues

    In game typ: /debugscript 3 :facepalm: https://wiki.multitheftauto.com/wiki/Debugging Read it.
  16. Et-win

    [HELP] BASE

    I don't understand anything you mean, srsly.
  17. https://community.multitheftauto.com/index.php?p= ... ls&id=9603 Original: viewtopic.php?f=108&t=72706
  18. Et-win

    [HELP] BASE

    Only Admin now.
  19. Et-win

    [HELP] script

    Someone else can maybe help you. I was thinking about triggering every second to the clients to fill the ProgressBar, but I'm not sure or that is really a good idea. Who know's maybe I will learn today too...
  20. Et-win

    [HELP] BASE

    Lol, you are welcome.
  21. Et-win

    [HELP] script

    What you want to do excactly? I can't follow it anymore to be honest.
  22. Et-win

    [HELP] script

    The script example I made is client-side. I believe you want to have it server-side. No problem, just use: onMarkerHit --Instead of onClientMarkerHit --and onMarkerLeave --Instead of onClientMarkerLeave Instead of checking 'tElement == getLocalPlayer()' you check in what team (If you work with teams?) the element (player) is. Make another function with: getTimerDetails And trigger the results to the players in the team where the timer belongs to.
  23. Et-win

    [HELP] BASE

    Nvm that, you say you added them. You create the marker on x, y and z. How in earth can moveObject have the same x, y and z if they are not local in the function?
×
×
  • Create New...