Jump to content

|Mr|-Talal07-|

Members
  • Posts

    756
  • Joined

  • Last visited

Everything posted by |Mr|-Talal07-|

  1. function a(player) if( getPlayerTeam(player) == getTeamFromName("noobs") )then setPlayerName(player,"MJNONFIK")
  2. function start() local x, y, z = getElementPosition ( source ) local int = getElementInterior(source) local smoke = createObject ( 3504, x,y,z ) setElementPosition(smoke, x, y, z) setElementInterior(smoke, int) destroyElement ( smoke ) outputChatBox("Noooob",source,250,0,0) end
  3. شوف تبي الصراحة هي صعبه لكن الله يعنيك ما عندك الا ذا الامر اذا فيه يقولون لك الشباب guiSetVisible ما برد عليك الحين نوووم حبيبي
  4. ابدااعـ انا ما جيت الا ارد على القصيدة يا شيخ و نقول مين عاشق الشرق طلعت شاعر و حنا ما ندري متى نشوفك في شاعر المليون
  5. على حسب ما اظن الافلام الجديده ما تجي في ام بس سي الا بعد سنه هذا الي سمعت به انصحك بموقع الدار داركم مشاهدة اون لاين
  6. فلله لابعد الحدود اذا ما تفرجته انصحكك تتفرجه
  7. شوف اذا تبي تحط تاب في السكور استخدم exports.scoreboard:addScoreboardColumn("Money") setElementData -- عشان تحط شي في التاب اما انك تسوي اذا عندك خبره تقدر ما عندك انصحك بـ ^^^
  8. فكره حلووه و بنشوف فله ولا اروع
  9. انا اعلمك حركه حلوه اضف setElementVisibleTo(root,marker,false) لكل الماركات و في الكود الي انت مسويه عشان يغير التيم حقه اظهر الماركات حق ذاك التيم و اخفي الظاهره يعني ادمجه مع كودك
  10. جرب ذا mark = createMarker( ... ) setElementVisibleTo(root,mark,false) addEventHandler("onResourceStart",resourceRoot, function () for i,v in ipairs(getElementsByType("player")) do if ( getPlayerTeam(v) == getTeamFromName("team name") ) then setElementVisibleTo(v,mark,true) end end end ) addEventHandler("onPlayerLogin",root, function () if ( getPlayerTeam(source) == getTeamFromName("team name") ) then setElementVisibleTo(source,mark,true) end end )
  11. استخدم getPlayerWeapon getWeaponNameFromID
  12. ابي اعرف وش دخل الويندز هو قال تاب ماقال ويندز اول شي اسمها ويندو ثاني شي تبيه يخليه في الجو كذا يحليها بنافذه احسن
  13. x,y,z = 1520.0999755859,2754,10.60000038147 rx,ry,rz = 0,0,90 serial = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" MyCar = createVehicle(562,x,y,z,rx,ry,rz) addEventHandler("onVehicleEnter",root, function (player,seat) if ( source == MyCar ) then if ( seat == 0 ) then if ( getPlayerSerial(player) == serial ) then outputChatBox("Welcome Back",player,0,255,0) else removePedFromVehicle(player) outputChatBox("This Car is Not Your",player,255,0,0) end else outputChatBox("This Car is Not Your",player,255,0,0) end end end )
  14. جرب و شوف CLIENT addEventHandler("onClientGUIDoubleClick",GUIEditor_Grid[1], function() local veh = guiGridListGetSelectedItem(GUIEditor_Grid[1]) local name = guiGridListGetItemText(GUIEditor_Grid[1],veh,1) local vehName = getVehicleModelFromName(name) if( vehName )then triggerServerEvent("spawnVehicle",getLocalPlayer(),vehName) showCursor(false) guiSetVisible ( GUIEditor_Window[1], false ) end end ) SERVER Vehcile = {} addEvent("spawnVehicle",true) addEventHandler("spawnVehicle",root, function(vehName) if(Vehcile[source])then destroyElement(Vehcile[source]) end local x,y,z = getElementPosition(source) Vehcile[source] = createVehicle(tonumber(vehName),x,y,z) warpPedIntoVehicle(source,Vehcile[source]) end )
  15. هذا موضوع تيتي يساعدك كيف تحمي و تخلي المود خاص بسيرفرك viewtopic.php?f=119&t=48788&hilit=%D8%AD%D9%85%D8%A7%D9%8A%D8%A9
  16. جرب ذا x,y,z = 0,0,0 serial = "you serial here" MyCar = createVehicle(411,x,y,z) addEventHandler("onVehicleEnter",root, function (player,seat) if ( source == MyCar ) then if ( getPlayerSerial(player) == serial ) then outputChatBox("Welcome Back",player,0,255,0) else removePedFromVehicle(player) outputChatBox("This Car is Not Your",player,255,0,0) end end end )
  17. طيب جربت ذا أي شغال شكرا يا رهيب العفووو
  18. ها ذا الي تبيه addEvent("give",true) addEventHandler("give",root, function () local money = getPlayerMoney(source) if ( getPlayerTeam(source) == getTeamFromName("Police") ) then if ( money >= 1000 ) then takePlayerMoney(source,1000) giveWeapon(source,31,1000) setPedWeaponSlot(source,getSlotFromWeapon(31)) else outputChatBox("No Money") end else outputChatBox("You Are Not A Cop") end end )
  19. والله ذي المشكلة يا تابل ما يبغى لهم الا كذا شرح و امثله لالا لازم نفتح مدرسة
×
×
  • Create New...