Jump to content

kewiiNNN

Members
  • Posts

    156
  • Joined

  • Last visited

Everything posted by kewiiNNN

  1. how to make when you create a car you warp into the car not like car spawn next to you?
  2. can nobody make me for free?
  3. dont know how to script ee
  4. how to change this to zombies can spawn in here safecol = createColCuboid ( 95.974617004395, 1751.3895263672, 17.640625, 255, 255, 255 ) safeZoneRadar = createRadarArea ( 95.974617004395, 1751.3895263672, 255, 255, 255, 255, 255 ) setElementData (safeZoneRadar, "zombieProof", true) function enterZone(hitPlayer,thePlayer) local skin = getElementModel (hitPlayer) if ( skin == 287 ) then toggleControl (hitPlayer, "fire", true ) toggleControl (hitPlayer, "aim_weapon", true) toggleControl (hitPlayer, "vehicle_fire", true) outputChatBox("You message here example: you entering the area 69.", hitPlayer, 0, 255, 0) else killPed (hitPlayer) end end addEventHandler( "onColShapeHit", safecol, enterZone ) function leaveZone(hitPlayer,thePlayer) local skin = getElementModel (hitPlayer) toggleControl (hitPlayer, "fire", true) toggleControl (hitPlayer, "aim_weapon", true) toggleControl (hitPlayer, "vehicle_fire", true) outputChatBox("You message here example: you out the area 69", hitPlayer, 255, 0, 0) if not ( skin == 287 ) then killPed (hitPlayer) end end addEventHandler( "onColShapeLeave", safecol, leaveZone )
  5. i have greenzone and zombie script but how to make zombie spawn only in that square radar
  6. kewiiNNN

    Zombie Mode

    Can i make just a simple town that zombies will spawn in that town only? can someone make me an example cause i dont know anything about scripting..
  7. kewiiNNN

    Greenzone

    How to make greenzone?
  8. I maked vehicle creator with a marker but i want to fix something: 1.You can't spawn any vehicle's while driving. 2.When you created the new one the old one is destroyed local cars = { {429}, {402}, {541}, {415}, {480}, {562}, {587}, {565}, {411}, {559}, {603}, {560}, {506}, {451}, {558}, {555}, {477} } carmarker = createMarker( -2670.2495117188,632.93334960938,13.5, "cylinder", 1.5, 0, 0, 255, 210, root ) function carmarkerhit(hitElement) if (isElement(hitElement) and getElementType(hitElement) == "player") then randomcar = math.random(#cars) carid = cars[randomcar][1] car = createVehicle(carid, -2674.5383300781,630.00115966797,13.862801551819, 0, 0, 90) warpPedIntoVehicle(hitElement,car) setTimer(function() destroyElement(car) end, 120000, 1) end end addEventHandler("onMarkerHit", carmarker, carmarkerhit)
  9. kewiiNNN

    Spawn Maps

    Looking for some good spawn maps.
  10. all working but is there a way to add so while you driving you cant spawn a new vehicle? only while walking local cars = { {429}, {402}, {541}, {415}, {480}, {562}, {587}, {565}, {411}, {559}, {603}, {560}, {506}, {451}, {558}, {555}, {477} } carmarker = createMarker( -1316.7326660156,-29.210359573364,13.2, "cylinder", 2, 255, 0, 0, 210, root ) function carmarkerhit(hitElement) if (isElement(hitElement) and getElementType(hitElement) == "player") then randomcar = math.random(#cars) carid = cars[randomcar][1] car = createVehicle(carid, -1329.3344726563,-37.078189849854,14.1484375) warpPedIntoVehicle(hitElement,car) setTimer(function() destroyElement(car) end, 120000, 1) end end addEventHandler("onMarkerHit", carmarker, carmarkerhit)
  11. kewiiNNN

    3D Speaker

    no i mean when you paste the mp3skull song is played and players around hear it but when i paste from youtube it wont work
  12. ERROR: MarkerCarspawn\login.lua:14: attempt to call global ' warpPedintoVehicle' (a nil value) now it wont warp in the car:s
  13. kewiiNNN

    3D Speaker

    i dont want to put some songs in the script i just want to work this script by youtube url links not some mp3 skull...
  14. i just replaced coordinates and it will work?
  15. can you paste me the whole example cause i dont know anything about scripting ?
  16. kewiiNNN

    3D Speaker

    https://community.multitheftauto.com/ind ... ls&id=7330 how to make this script work for youtube links? cause it only works for mp3skull links:s
  17. how to make a marker and when you go in the marker it will spawn you any random cars in fast cars in f1 create section? and when the vehicle its empty it will be destroyed like vanish in 2 min
  18. What causes to fall through an normal GTA object like some of area51 doors and objects i fall through why? how to figure whats causing it to fall through?
×
×
  • Create New...