Jump to content

Jaysds1

Members
  • Posts

    4,961
  • Joined

  • Last visited

Everything posted by Jaysds1

  1. Jaysds1

    Router

    your at school?
  2. ok, thanks BTW, you could offer people birthday discounts
  3. Ok, I'll sign up in January, right now I have no money because I spent it on my new site... Thanks for the detailed review CowTurbo I think this is one of the best server hosting ever. UNBEATABLE PRICES(UNLESS ANOTHER HOSTER IS WILLING TO HOST SERVERS FREE)
  4. Jaysds1

    Ports

    ok, here's a site for you to set up: http://portforward.com/
  5. Jaysds1

    Ports

    ok, Do you have a router/Wireless modem?
  6. Jaysds1

    Ports

    it should be the same
  7. Jaysds1

    Ports

    a, try this: https://forum.multitheftauto.com/viewtopic.php?f=114&t=33722&hilit=+port
  8. Jaysds1

    need help

    Are you talking about the camera moving to the steering wheel?
  9. What's the scoreboard resource folder name???
  10. Well, You do need to make a colshape before making this script and Well, if it's your server, then you should make them, but if it's some other server, then you should just use them how it is. you can't bind them, unless there's a binding command to key script (SAES has this).
  11. He's not putting this script in the resource he's restarting "DUH", and not having if statements is not dumb, it depends on what your doing with the code...
  12. What solidsnake showed you is server-sided.
  13. Ok, he wants a script with no "if" 's, "then", "else", and "end"... He just want the resource to restart by it's self and not the whole gamemode..., get it?
  14. Jaysds1

    Refreshing

    try this: addEventHandler("onResourceStart",getResourceRootElement(getThisResource()), function() tble1 = getResources() setTimer(getResourceState,30000,1,tbl1) if (getResourceState(tbl1) == "failed to load") then outputDebugScript("A resource failed to load") end end)
  15. try this: addEventHandler("onResourceStart",getResourceRootElement(getResourceFromName("scoreboard"), function(res) restartResource(res) end)
  16. Jaysds1

    ERORR pls help

    Did you install MTA when you where an Administrator?
  17. try deleting everything in the C:\Program Files\MTA San Andreas 1.1\mods\deathmatch\resources
  18. ok, 1. Uninstall MTA 2. Use this to clean/fix anything in your registry 3.Install MTA again
  19. You forgot to add the brackets: function bind(hitPlayer, matchingDimension) if (getElementType(hitPlayer) == "player") then bindKey(hitPlayer, ",", "down", open) bindKey(hitPlayer, "/", "down", close) end end addEventHandler("onColShapeHit", col, bind) function unbind(leaveElement, matchingDimension) if (getElementType(leaveElement) == "player") then unbindKey(leaveElement, ",", "down", open) unbindKey(leaveElement, "/", "down", close) end end addEventHandler("onColShapeLeave", col, unbind)
  20. Jaysds1

    MTA jobs

    Come on Benxamix, you don't have to be mean, LeooN15, We help people with scripts, to make us do work like this, people pay us to do it... it's a lot of work and it takes away our time, Srry
  21. Ok, FINNALY I GOT IT: LSgate1 = createObject ( 969, 1584.9000244141, -1637.9000244141, 12.39999961853, 0, 0, 0) col = createColRectangle(1584.8251953125,-1644.04296875,10,15) addEventHandler ( "onColShapeHit", col, function(hitElement) if (getElementType (hitElement) == "player") then if isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(hitElement)), aclGetGroup ( "Admin" ) ) then moveObject (LSgate1, 2500, 1584.9000244141, -1637.9000244141, 15.99999961853) -- here is where you enter the coordinatess of the new location of the object, 2200 = the speed of the movent. end end end) addEventHandler ( "onColShapeLeave", col, function(hitElement) if (getElementType (hitElement) == "player") then if isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(hitElement)), aclGetGroup ( "Admin" ) ) then moveObject (LSgate1, 2500,1584.9000244141, -1637.9000244141, 12.39999961853) -- here is where you copy the coordinates of the orginal location of the object, 2951 = the timer of movent. end end end)
×
×
  • Create New...