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. Happy B-Day!
  5. Problem fixed, I installed it. and works
  6. Not a problem, I'll keep waiting for a dev to help me.
  7. Nah, not a laptop
  8. Yes...do it when you're inside a vehicle
  9. Not my PC, so I can't open the case.
  10. Nothing. opens the program and nothing happens
  11. addCommandHandler("invisible", function (thePlayer) local vehicle = getPedOccupiedVehicle(thePlayer) if vehicle then setElementAlpha(vehicle, 0) outputChatBox("Láthatatlan") end end)
  12. Yes...that's my problem anyways
  13. That's my problem, I can't find it. and I dunno the VGA name
  14. Check Community for it. if you can't find it. script by your ownself
  15. When I open GTA or MTA nothing happens. I made MTADiag and here's the link: http://pastebin.com/XHw7QkrJ
  16. Baseplate

    lights

    if you read Wiki page you'll find it
  17. addEventHandler("onPlayerSpawn", root, function() setElementModel(source, 287) end) This is easy tho??
  18. Added the meta?
  19. That ^ and if u need any help, my skype is down my signature. just add me
  20. 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
  21. or check Community for scripts.
  22. <meta> <script src="server.lua" type="server" /> <script src="client.lua" type="client" /> </meta>
  23. /debugscript 3
  24. 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...