Jump to content

mr.Extreme

Members
  • Posts

    240
  • Joined

  • Last visited

About mr.Extreme

  • Birthday 15/11/1996

Details

  • Location
    Palestine

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

mr.Extreme's Achievements

Red-Headed Stepchild

Red-Headed Stepchild (19/54)

0

Reputation

  1. no there error takeWeapon work but createpickup no created
  2. hello i made drop weapon but no work here my code server: function dropweapon(player) local x,y,z = getElementPosition(player) local weapon = getPedWeapon(player) local ammo = getPedTotalAmmo(player) takeWeapon(player, weapon, ammo) createPickup(x+4, y, z+1, weapon, 5000, ammo) end addCommandHandler("drop", dropweapon)
  3. thx you very much and For all
  4. oh thx you ok i want make when player mute cant he use command only allowed ./report
  5. hello how i can remove command login I looked at the folder and did not find cmd login to remove it and thx for help
  6. IIYAMA thx you very much its working
  7. mr.Extreme

    get money

    hello i have problem when kill other team or not team i no get money here my code server: function setMoneyOnWasted ( ) givePlayerMoney ( source, -100 ) end addEventHandler ( "onPlayerWasted", getRootElement(), setMoneyOnWasted ) function onPlayerLogout ( ) setPlayerMoney ( source, 0 ) end addEventHandler ( "onPlayerLogout", getRootElement(), onPlayerLogout ) addEventHandler('onPlayerWasted',root,function(_,killer) if killer and killer ~= source and getElementType(killer) == 'player' then if getTeamName(getPlayerTeam(killer)) == getTeamName(getPlayerTeam(source)) then givePlayerMoney(killer,getPlayerMoney(killer) 0) end if getTeamName(getPlayerTeam(killer)) ~= getTeamName(getPlayerTeam(source)) then givePlayerMoney(killer,1000) end end end ) and thx for help.
  8. ما زبط function bloqeo ( player, seat, jacked ) local zk = getElementData(player,"level") if ( seat == 0 ) and ( zk < 10 ) then local vehicleID = getElementModel(player) if vehicleID == 411 then outputChatBox ("[sERVER]:You need be level 10 to enter in this vehicle", player, 255, 100, 100, false) cancelEvent() end end end addEventHandler ( "onVehicleStartEnter", getRootElement(), bloqeo )
  9. اسلام عليكم انا بدي احط الاي دي للسيارة كيف ؟ علشان بدي احط لكل سيارة لفل . server: function bloqeo ( player, seat, jacked ) zk = getElementData(localPlayer,"Zombie kills") if ( seat == 0 ) and ( zk < 3 ) then outputChatBox ("[sERVER]:You need be level 2 to enter in this vehicle", player, 255, 100, 100, false) cancelEvent() end end addEventHandler ( "onVehicleStartEnter", getRootElement(), bloqeo )
  10. object = createObject(980, 3283.3999023438, 261.10000610352, 14.10000038147) marker = createMarker(3284, 261.29998779297, 1, "cylinder", 2, 100, 0, 0, 100) function gateo(thePlayer) if (getTeamName(getPlayerTeam(thePlayer)) == "Team") then moveObject(object, 2500, 3283.3999023438, 261.10000610352, 14.10000038147, 5) end end addEventHandler("onMarkerHit",marker,gateo) function gatec(thePlayer) if (getTeamName(getPlayerTeam(thePlayer)) == "Team") then moveObject(object,3283.3999023438, 261.10000610352, 14.10000038147) end end addEventHandler("onMarkerLeave",marker,gatec)
  11. nice and thx you very much
×
×
  • Create New...