Jump to content

Baseplate

Members
  • Posts

    1,417
  • Joined

  • Last visited

Everything posted by Baseplate

  1. I don't think so mate. cuz you won't get shit from us
  2. Mate, even Algerians and Morrocians could come in and speak with us.
  3. Really glad to see positive replies ty guys ^^
  4. server.lua addCommandHandler ( 'afk', function (thePlayer) setElementPosition ( thePlayer, 1958.7082519531, -1517.5471191406, 973.55889892578) setElementFrozen ( thePlayer, true ) toggleControl ( thePlayer, "fire", false ) outputChatBox ("#FF0000You are now in AFK mode do /stopafk to go back and play!", thePlayer, 255, 255, 255) end ) addCommandHandler ( 'stopafk', function (thePlayer) killPed(thePlayer) setElementFrozen ( thePlayer, false ) toggleControl (thePlayer, "fire", true ) end ) meta.xml <script src="server.lua" type="server"/>
  5. Wtf? how you did it?
  6. Baseplate

    help anyone

    addCommandHandler ( "vipjetpack", function ( thePlayer ) if doesPedHaveJetPack ( thePlayer ) then -- If the player have a jetpack already, remove it removePedJetPack ( thePlayer ) -- Remove the jetpack return -- And stop the function here end -- Otherwise, give him one if he has access local accName = getAccountName ( getPlayerAccount ( thePlayer ) ) -- get his account name if isObjectInACLGroup ("user."..accName, aclGetGroup ( "VIP" ) ) then -- Does he have access to Admin functions? if not doesPedHaveJetPack ( thePlayer ) then -- If the player doesn't have a jetpack give it. givePedJetPack ( thePlayer ) -- Give the jetpack end end end ) Code from Wiki [s.K] Again, LAST TIME! STOP ASKING FOR SCRIPTS!
  7. No need to be a cunt, he just wanted to help.
  8. Window = guiCreateWindow ( 0, 0, 0.5, 0.4, "Information", true )--create a window which has "Information" in the title bar. guiSetVisible(Window, false) tabPanel = guiCreateTabPanel ( 0, 0.1, 1, 1, true, Window ) tabMap = guiCreateTab( "Map Information", tabPanel ) tabHelp = guiCreateTab( "Help", tabPanel ) guiCreateLabel(0.02,0.04,0.94,0.2,"This is information about the current map",true,tabMap) guiCreateLabel(0.02,0.04,0.94,0.92,"This is help text.",true,tabHelp) function funkcia() guiSetVisible (Window, true) end bindKey ("F1", "down", funkcia )
  9. If Client: showCursor (true) --To show it showCursor (false) --To hide it If Server: showCursor (source, true) --To show it showCursor (source, false) --To hide it
  10. local Window = guiCreateWindow ( 0, 0, 0.5, 0.4, "Information", true )--create a window which has "Information" in the title bar. local tabPanel = guiCreateTabPanel ( 0, 0.1, 1, 1, true, Window ) local tabMap = guiCreateTab( "Map Information", tabPanel ) local tabHelp = guiCreateTab( "Help", tabPanel ) guiCreateLabel(0.02,0.04,0.94,0.2,"This is information about the current map",true,tabMap) guiCreateLabel(0.02,0.04,0.94,0.92,"This is help text.",true,tabHelp) function funkcia() guiSetVisible (Window, true) end bindKey ("F1", "down", funkcia ) Try it now
  11. Even my epic 8-year old toaster could run MTA in FPS of 20 .
  12. That should be available in next version of MTA
  13. Baseplate

    help anyone

    You can use ZModeler or 3DS Max but you need skills first
  14. Nice robbster, taking credits from people
  15. This resource is based on drug transport, you just take a car and get to the place you choose. Download: https://community.multitheftauto.com/ind ... ls&id=6065 or Here P.S:If you saw any errors in debug ignore it. the script is tested and works fine.
  16. It isn't Callum, you just have to be clever
  17. Nice working Thing, really useful
  18. DmC, nice bump... Nice one btw UAEpro
  19. add this to your ACL <object name="resource.biznes"></object>
  20. function engines() local theVehicle = getPedOccupiedVehicle ( getLocalPlayer() ) if (theVehicle) then local state = getVehicleEngineState ( theVehicle ) if (state == true) then setVehicleEngineState(theVehicle, false) elseif (state == false) then setVehicleEngineState(theVehicle, true) end end end addCommandHandler("engine", engines)
×
×
  • Create New...