Jump to content

BEN.

Members
  • Posts

    56
  • Joined

  • Last visited

Everything posted by BEN.

  1. BEN.

    Button Help

    https://wiki.multitheftauto.com/wiki/OnClientGUIClick
  2. https://wiki.multitheftauto.com/wiki/OnPlayerDamage
  3. BEN.

    Text in more row

    guiSetText(guiElement,"1. \n 2. \n 3.")
  4. BEN.

    Help

    addEventHandler
  5. BEN.

    Help

    addEvent ("onPlayerDamage",playerSource, function (playerSource) setTimer (healer) end) ?
  6. BEN.

    Help

    what do you want to stop?
  7. BEN.

    Help

    function healer( playerSource ) money = getPlayerMoney ( playerSource ) health = getElementHealth ( playerSource ) if money >= 3000 and health < 100 then takePlayerMoney ( playerSource , 3000 ) setElementHealth ( playerSource , 100 ) outputChatBox ("You got 100 health" , playerSource, 21 , 241 , 32 , true ) elseif money >= 3000 and health >= 100 then outputChatBox("Your health already: "..health,playerSource) elseif money < 3000 then outputChatBox("Your don't have enough money",playerSource) end end addCommandHandler ( "hp", healer )
  8. BEN.

    Help

    https://wiki.multitheftauto.com/wiki/IsTimer
  9. bindKey("lshift","down", function() if isPedInVehicle (localPlayer) then local vehicle = getPedOccupiedVehicle (localPlayer) local sx,sy,sz = getElementVelocity ( vehicle ) setElementVelocity( vehicle ,sx, sy, sz+0.5 ) end end)
  10. BEN.

    help plz

    https://wiki.multitheftauto.com/wiki/AddEvent https://wiki.multitheftauto.com/index.p ... lientEvent read this functions
  11. BEN.

    help plz

    Because it's server functions
  12. BEN.

    help plz

    https://wiki.multitheftauto.com/wiki/IsObjectInACLGroup
  13. BEN.

    help plz

    <a href=\"https://wiki.multitheftauto.com/wiki/IsObjectInACLGroup\" rel=\"external nofollow\">https://wiki.multitheftauto.com/wiki/IsObjectInACLGroup</a>
  14. BEN.

    help plz

    if isObjectInACLGroup
  15. BEN.

    help plz

    bindKey("lshift","down", function() if isPedInVehicle (localPlayer) then local vehicle = getPedOccupiedVehicle (localPlayer) local sx,sy,sz = getElementVelocity ( vehicle ) setElementVelocity( vehicle ,sx, sy, sz+0.5 ) end end)
  16. BEN.

    help plz

    show your meta.xml
  17. BEN.

    help plz

    bindKey("lshift","down", function() if isPedInVehicle (localPlayer) then local vehicle = getPedOccupiedVehicle (localPlayer) local sx,sy,sz = getElementVelocity ( vehicle ) setElementVelocity( vehicle ,sx, sy, sz+0.5 ) end end)
×
×
  • Create New...