Jump to content

Baseplate

Members
  • Posts

    1,417
  • Joined

  • Last visited

Everything posted by Baseplate

  1. Baseplate

    Happy New Year!

    Happy new year! well I passed my night home watching TV. nothing else to do
  2. Looks good, thumbs up mate.
  3. My skype is down my signature, if you needed any help contact me or ask at Scripting board
  4. Problem fixed, I installed it. and works
  5. Not a problem, I'll keep waiting for a dev to help me.
  6. Yes...do it when you're inside a vehicle
  7. Not my PC, so I can't open the case.
  8. Nothing. opens the program and nothing happens
  9. addCommandHandler("invisible", function (thePlayer) local vehicle = getPedOccupiedVehicle(thePlayer) if vehicle then setElementAlpha(vehicle, 0) outputChatBox("Láthatatlan") end end)
  10. Yes...that's my problem anyways
  11. That's my problem, I can't find it. and I dunno the VGA name
  12. Check Community for it. if you can't find it. script by your ownself
  13. When I open GTA or MTA nothing happens. I made MTADiag and here's the link: http://pastebin.com/XHw7QkrJ
  14. Baseplate

    lights

    if you read Wiki page you'll find it
  15. addEventHandler("onPlayerSpawn", root, function() setElementModel(source, 287) end) This is easy tho??
  16. That ^ and if u need any help, my skype is down my signature. just add me
  17. function playMySound() local x, y, z = getElementPosition(localPlayer) local sound = playSound3D ("horn.wav", x, y, z) end function stopMySound() local soundoff = stopSound(sound) end function bindTheKeys() unbindKey("h") bindKey("h", "down", playMySound) bindKey("h", "up", stopMySound) UNTESTED! And we don't do codes but we help only, I just did for you to learn
  18. or check Community for scripts.
  19. <meta> <script src="server.lua" type="server" /> <script src="client.lua" type="client" /> </meta>
  20. Client: addEventHandler("onClientGUIClick", guiRoot, function() triggerServerEvent("getMoney", localPlayer) if source == GUIEditor_Button[1] then setPedAnimation(localPlayer, "BAR", "dnk_stndm_loop") setTimer(setPedAnimation,5000,1,localPlayer) end end ) Server: addEvent("getMoney", true) addEventHandler("getMoney", root, function (thePlayer) local PlayerMoney = getPlayerMoney(thePlayer) if ( PlayerMoney >= 1) then takePlayerMoney(thePlayer, 1) end end
×
×
  • Create New...