w7sH Posted May 12, 2016 Share Posted May 12, 2016 السلام عليكم ابي كود عباره عن ماركر اذا خش فيه يعطيه مبلغ 100 الف ويقتله وابي النفاثه تقفل اذا دخل فاحداثيات Link to comment
Mr.CoR Posted May 12, 2016 Share Posted May 12, 2016 createMarker onClientMarkerHit triggerServerEvent #Server givePlayerMoney killPed Link to comment
MR.GRAND Posted May 12, 2016 Share Posted May 12, 2016 ممكن ترتبها بعد اذنك (: -- # Client local marker = createMarker ( x, y, z, 'cylinder', 1, 255, 255, 255, 255 ) local Cplayer = getLocalPlayer() addEventHandler( 'onClientMarkerHit', marker, function(player) if (player == localPlayer) then triggerServerEvent( 'Money', Cplayer ) end end, false) -- # Server addEvent( 'Money', true ) addEventHandler( 'Money', root, function() if doesPedHaveJetPack( source ) then removePedJetPack( source ) end givePlayerMoney( source, 1000 ) killPed( source ) end ) Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now