Jump to content

Taalasmaa

Members
  • Posts

    197
  • Joined

  • Last visited

Everything posted by Taalasmaa

  1. https://wiki.multitheftauto.com/wiki/CreateWater And please, use mta development.
  2. https://wiki.multitheftauto.com/wiki/CreateWater And please, use mta development.
  3. No. I just finished slipper handling with velocity. I will post video soon, it's awesome Thanks for everybody who helped!
  4. No. I just finished slipper handling with velocity. I will post video soon, it's awesome Thanks for everybody who helped!
  5. Noo, I didn't expect that, I can write it by myself Thanks!
  6. Noo, I didn't expect that, I can write it by myself Thanks!
  7. Actually it is possible. You can use velocity functions to script that. Really??! I need to test that! EDIT: What velocity function do I have to use? This one? setVehicleTurnVelocity or SetElementVelocity or HandlingSetMaxVelocity Thanks!
  8. Actually it is possible. You can use velocity functions to script that. Really??! I need to test that! EDIT: What velocity function do I have to use? This one? setVehicleTurnVelocity or SetElementVelocity or HandlingSetMaxVelocity Thanks!
  9. Hey, I have snow mod server and there's snowing and SF Area textures are replaced with snow and now I need to make slippery handling, is there way to make it with these MTA Functions. Thanks.
  10. Hey, I have snow mod server and there's snowing and SF Area textures are replaced with snow and now I need to make slippery handling, is there way to make it with these MTA Functions. Thanks.
  11. Taalasmaa

    Question

    So, isn't there any ways to change clothes? I mean all those clothes texture files.. vest.txd etc.
  12. function gate() myGate = createObject ( 8378, 0, 0, 0 ) end addEventHandler ( "onResourceStart", getResourceRootElement ( getThisResource () ), gate ) function moveIt (thePlayer ) moveObject ( myGate, 3000, newX, newY, newZ ) setTimer ( moveBack, 5000, 1, thePlayer ) end addCommandHandler("myCommand",moveIt) function moveBack () moveObject ( myGate, 3000, oldX, oldY, oldZ ) end There's...
  13. Taalasmaa

    Question

    Hey, i'm making spidermans vs robbers gamemode and I need to replace a one skin, so it's looking like spiderman. Okey now, I can create script myself, but where can I find these textures id's: gimp.txd gimpleg.txd gimpmask.txd gimpshoe.txd I need to find those id's. Thank you, i'm glad if someone can help me with this problem.
  14. Well, are you sure that you are not in wrong dimension, your ped should be in dimension 0 with this script and if i'm right mabako-services uses different dimensions, go to restaurant and look your dimension with admin panel.
  15. Thanks for replies, I will try something of those
  16. Hello, I wanted to make a nice firework for new year.. I am not asking ready script, but tell me nice ways to get awesome firework. I will script it, just give some ideas how to do a really nice firework. Thanks Regards Taalasmaa
  17. Because there are people like you who know how to use "Search" feature! lol Well, I'm not even using this script in my servers. I just found it something like half year ago... EDIT: I know you hate me, because EUHM... I was stupid, I'm now learned much about lua, just forget those old times.
  18. addEventHandler( "onVehicleExplode", getRootElement( ), function( ) local parent = getElementParent( source ) if getElementType( parent ) == "map" and getElementID( parent ) ~= "dynamic" then local parentRes = getElementParent( parent ) if parentRes == getResourceRootElement( getThisResource( ) ) then setTimer( respawnVehicle, 5000, 1, source ) else setTimer( destroyElement, 5000, 1, source ) end else setTimer( destroyElement, 5000, 1, source ) end end ) THIS IS NOT WRITTEN BY ME! This is 50p's script and all credits for him. I found this from one topic (cant remember/find) But this is anyway scripted by 50p's It's anyway fully working, dunno why 50p didn't put this into this topic?
  19. Oh, thanks, script is working now 100%. It's cool now
  20. Hey, I did bar's where you can buy drinks... After too many drinks you are drunk. Is there some events/functions so car is automatically turning to left/right, without pressing nothing, so I can do timers which automatically turns car so it looks like you're drunk Thanks. Regards Taalasmaa
  21. Taalasmaa

    job :(

    function startbus (thePlayer, command ) veh = getPedOccupiedVehicle ( thePlayer ) if (veh == 431) then my = createMarker ( -2196.12, 324.12, 34.12, "cylinder", 2.5, 255, 255, 0, 255, thePlayer ) outputChatBox ( "#FF0000[bus Companie] #00FF00get to the first station, dont get too late!", thePlayer, 255, 255, 255) end end addCommandHandler("startbus", startbus) Should Work.
  22. Nothing. I don't know what's going wrong.
  23. Yah, I'll test it, thanks for reply
  24. WTF! Take a look: https://wiki.multitheftauto.com/wiki/ToggleControl https://wiki.multitheftauto.com/wiki/CreateColSphere and this: https://wiki.multitheftauto.com/wiki/IsElementWithinColShape And try to figure out what you have to do. It's not hard.
×
×
  • Create New...