Jump to content

DakiLLa

Members
  • Posts

    965
  • Joined

  • Last visited

Everything posted by DakiLLa

  1. Well done, guys! Awesome map (as always..) Would be cool, if swat forces will have a special camouflage, so it'd be hard to see them on the snow
  2. You can create a multi-array table, which will contain x,y,z and rz values like this: local spawns = { --x, y, z, rotZ { -2030.1610107422, 172.25221252441, 28.8359375, 90.0 }, { 423.2495, 453.2564, 564.6321, 120.6928 } } function spawn( player ) local rnd = math.random( 1, #spawns ) spawnPlayer( player, spawns[rnd][1], spawns[rnd][2], spawns[rnd][3], spawns[rnd][4] ) end
  3. well, as i can see, you have created a marker somewhere in interior, buy you havent set his interior leaveMarker = createMarker( ... ) setElementInterior( leaveMarker, 3 ) --3 is for example..
  4. uhm, may be you forgot to put the leaveMarker in interior with 'setElementInterior'
  5. you should check the type of element which hits your marker. If it is a player, then teleport him. function leaveCasino ( thePlayer ) if getElementType( thePlayer ) == "player" then setElementInterior ( thePlayer, 0, 2027.6220703125, 1007.2666015625, 10.8203125 ) end end
  6. DakiLLa

    Map problem

    my friend just got the same problem: the 'radar.jpg' is exists but it doesnt wrok ingame. So, he has replaced it with a new one and now it works.
  7. DakiLLa

    Real Time

    local time = getRealTime() setMinuteDuration( 60000 ) setTime( time.hour, time.minute ) this should works, because getRealTime returns a table, containing hour, minutes, etc.
  8. if you find mistakes/wrong statements in examples/on wiki pages you should edit them. already fixed that page after ive posted my first reply in this topic
  9. there is a mistake in the example, use the onPlayerVehicleExit event instead of onPlayerExitVehicle
  10. DakiLLa

    Serious Help

    I guess that you are talking about 'race' mode, so, just start the 'race' definitions (click on this button) and then you are allowed to put spawnpoints, pickups, whatever you want.
  11. DakiLLa

    Mta orange? :S

    Btw, 'Orange' is also placed in the Tag's section at the bottom of the main page
  12. well, to be honest, i just checked it after ive posted here, and forsure, it doesnt work, lol
  13. hmm, does setControlState works aswell for peds as setPedControlState ?
  14. trailers desync is an old bug and it was submitted long time ago..
  15. trailers desync is an old bug and it was submitted long time ago..
  16. DakiLLa

    XMas Tree !

    The lights around a tree are coronas (markers). You can look into the .lua file, they are stored in tables there..
  17. DakiLLa

    XMas Tree !

    The lights around a tree are coronas (markers). You can look into the .lua file, they are stored in tables there..
  18. or you can get it from IDE list
  19. or you can get it from IDE list
  20. that was just a suggestion for a newbie like that guy, who asked about a numpad door.. If he would know enough, he could make his password stored in the server-side though
  21. that was just a suggestion for a newbie like that guy, who asked about a numpad door.. If he would know enough, he could make his password stored in the server-side though
×
×
  • Create New...