Baseplate
Members-
Posts
1,417 -
Joined
-
Last visited
Everything posted by Baseplate
-
I don't think so mate. cuz you won't get shit from us
-
Mate, even Algerians and Morrocians could come in and speak with us.
-
Really glad to see positive replies ty guys ^^
-
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"/>
-
Wtf? how you did it?
-
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!
-
No need to be a cunt, he just wanted to help.
-
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 )
-
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
-
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
-
Even my epic 8-year old toaster could run MTA in FPS of 20 .
-
That should be available in next version of MTA
-
You can use ZModeler or 3DS Max but you need skills first
-
Nice robbster, taking credits from people
-
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.
-
It isn't Callum, you just have to be clever
-
You didn't execute the SQL file
-
Nice working Thing, really useful
-
DmC, nice bump... Nice one btw UAEpro
-
Lolz, no one will script for an RP server.
-
showPlayerHudComponent
-
add this to your ACL <object name="resource.biznes"></object>
-
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)
