Jump to content

below


Recommended Posts

ايش الغلط هنا ؟؟؟؟

  
  
local theMarker1 = createMarker ( 268.60382, 1883.84534, 13.55536, "cylinder", 4, 255, 255, 255, 0) 
  
function createExplosion() 
    createExplosion( 268.60382, 1883.84534, 13.55536 ) 
end 
addEventHandler("onMarkerHit", theMarker1, createExplosion) 

Link to comment
  
local theMarker1 = createMarker ( 268.60382, 1883.84534, 13.55536, "cylinder", 4, 255, 255, 255, 0) 
  
function boom() 
    createExplosion( 268.60382, 1883.84534, 13.55536, 0 ) 
end 
addEventHandler("onMarkerHit", theMarker1, boom) 
  

الـ 0 هو النوع حق القتل

الويكي يقول !

0: Grenade

1: Molotov

2: Rocket

3: Rocket Weak

4: Car

5: Car Quick

6: Boat

7: Heli

8: Mine

9: Object

10: Tank Grenade

11: Small

12: Tiny

Link to comment

local theMarker1 = createMarker ( 268.60382, 1883.84534, 13.55536, "cylinder", 4, 255, 255, 255, 0) 
  
addEventHandler("onMarkerHit", theMarker1, 
function(plr) 
    if getElementType(plr) == 'player' then 
    createExplosion( 268.60382, 1883.84534, 13.55536 ,type) 
        end 
    end 
) 

type :

0: Grenade

1: Molotov

2: Rocket

3: Rocket Weak

4: Car

5: Car Quick

6: Boat

7: Heli

8: Mine

9: Object

10: Tank Grenade

11: Small

12: Tiny

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...