Jump to content

^iiEcoo'x_)

Members
  • Posts

    2,935
  • Joined

  • Last visited

  • Days Won

    44

Everything posted by ^iiEcoo'x_)

  1. قله #_iMr.[E]coo يشكرك ويسلم عليك ههههههه ما امزح
  2. Write Command In F8 ( debugscript 3 ) ,
  3. ^iiEcoo'x_)

    Teams Tag

    addEventHandler ("onPlayerChat",root, function ( msg ) if getPlayerTeam ( source ) then cancelEvent () local PlrTeam = getTeamFromName ( getPlayerTeam ( source ) ) outputChatBox ("[ "..PlrTeam.." ] "..getPlayerName ( source ).." : "..msg , root , 255 , 255 , 255 , true ) end end ) Try this
  4. هههههههههههههههههه بطاطا عالفحم @Ahmed Ly نفسي اشوفك تسولف
  5. -_________- مع الوقت تاخذ $$ فكر شوي ، تقنعني انه فيس بوك م ربح كل هالسنين
  6. Client bool givePlayerMoney ( int amount )
  7. ما تعرف تسوي 2% من الكود
  8. addEventHandler ("onClientGUIClick",root, function () if source == Button then triggerServerEvent ("JoinJob",localPlayer) end end ) addEvent ("CreateMarker",true) addEventHandler ("CreateMarker",root, function () Marker = createMarker ( x , y , z , "cylinder" , 2 , 255 , 0 , 255 , 255 ) Blip = createBlipAttachedTo ( Marker , 38 ) outputChatBox ( " اذهب الى العلامة للاكمال المهمة " ) end ) addEventHandler ("onClientMarkerHit",root, function () if getElementType ( localPlayer ) == "vehicle" and isPedInVehicle ( localPlayer ) then if source == Marker then triggerServerEvent ( "GivePlayerMoney", localPlayer ) destroyElement ( Marker ) destroyElement ( Blip ) end end end ) Car = {} addEvent("JoinJob",true) addEventHandler("JoinJob",root, function() Car[source] = createVehicle( 595 , x , y , z ) warpPedIntoVehicle( source , Car[source] ) triggerClientEvent ( source , "CreateMarker" , source ) end ) addEvent ("GivePlayerMoney",true) addEventHandler ("GivePlayerMoney",root, function () givePlayerMoney ( source , 5000 ) outputChatBox (" لقد انهيت المهمة وحصلت على 5000 " , source ) destroyElement ( Car[source] ) Car[source] = nil end )
  9. , توني ادري شكرا عالمعلومات , جاري التعديل
  10. اتوقع حجمه 60 جيجا وكبير ولازمك مواصفات عالية جدا
  11. عدلت شوي , قولي باي اسطر ؟
  12. addEventHandler ("onClientGUIClick",root, function () if source == Button then -- زر دخول المهمة triggerServerEvent ("JoinJob",localPlayer) end end ) local Table = { } addEvent ("JoinJob",true) addEventHandler ("JoinJob",root, function () setElementModel ( source , 3 ) -- اي دي الشخصية table.insert ( Table , source ) outputChatBox ( " اذهب الى العلامة للدخول المهمة " , source ) local Car[source] = createVehicle( 543 , x , y , z) warpPedIntoVehicle(source,Car[source] ) local Marker[source] = createMarker ( x , y , z , "cylinder" , 2 , 255 , 0 , 255 , 255 , source ) local Blip[source] = createBlipAttachedTo ( Marker[source] , 20 ) setElementVisibleTo ( Blip[source] , root , false ) setElementVisibleTo ( Blip[source] , source , false ) end ) addEventHandler ("onMarkerHit",root, function (player) if getElementType(player) == "vehicle" and isPedInVehicle (player) then if source == Marker[source] then givePlayerMoney ( player , 2000 ) destroyElement ( Car[source] ) destroyElement ( Blip[source] ) destroyElement ( Marker[source] ) outputChatBox (" لقد انهيت المهمة وربحت 2000 " , player ) table.remove ( Table , player ) end end end ) سويت لك الكود كامل , جربه
×
×
  • Create New...