-
Posts
2,935 -
Joined
-
Last visited
-
Days Won
44
Everything posted by ^iiEcoo'x_)
-
x[ السيرفرآت العربية | Arabs Server ]x
^iiEcoo'x_) replied to ^iiEcoo'x_)'s topic in Arabic / العربية
اتمنى تزويدي بكل المعلومات عنه -
local aTable_ = { { aButton1_ , 23 }, { aButton2_ , 31 } --{ button name , weapon id } } addEventHandler ( 'onClientGUIClick' , root , function ( ) for _ , v in ipairs ( aTable_ ) do end if ( source == v[1] ) then triggerServerEvent ( 'GiveWeapon' , localPlayer , v[2] ) end end ) كمل الترايقر
-
شكرآ شكرآ لك
-
local aTable_ = { } addCommandHandler ( 'Join' , function ( aPlayer_ ) if ( #aTable_ ~= 1 ) then table.insert ( aTable_ , aPlayer_ ) else outputChatBox ( ' No Can Join ' , aPlayer_ ) end end ) مثآل ^
-
addEvent("buy:r",true) -- ذا addEventHandler("buy:r",root, function( aPlayer ) if ( getPlayerMoney(aPlayer) >= 60000 ) then takePlayerMoney(aPlayer, 60000) outputChatBox("#FF0000##00FF00 You bought a deadly rocket succesfully.",aPlayer,255,255,255,true) triggerClientEvent(aPlayer,"crosss",aPlayer) else triggerClientEvent(aPlayer, "nomoneyerrorr",aPlayer) end end ) متأكد انك حاط الكود ب ملف سيرفر ؟
-
أعذرني , م إجت ع بالي شكرا ع المعلومة
-
لو تلاحظ يا صديقي , تضيف حساب جديد للسيرفر addAccount وظيفة
-
ههههههه , لا تعصب هسا لما شخص دخل ع السيرفر , و سجل بحساب , ما يقدر يجيب حسابه لانه اصلا هو ما يمتلك حساب ؟
-
طريقتك خاطئه صديقي , لانه لما يسجل حساب جديد ما يكون عنده حساب اصلا عشان نحط عليه داتا , ف تزبط بهذي الطريقة :- setAccountData ( getAccountName ( username ) , 'aData_' , username , password )
-
افضل سيرفر هجولة بالعالم العربي بالكامل
^iiEcoo'x_) replied to SultanKing's topic in Arabic / العربية
تقدر تقوله السلبيات ب الخاص , لان ممكن اي شخص يشوف تعليقك ويغير رأيه عشان يفوت السيرفر , وهذا القسم الصحيح للنشر السيرفرات , حتى انك انت قمت بنشر سيرفرك بهذا القسم- 29 replies
-
- t.q
- سيرفر هجولة
-
(and 4 more)
Tagged with:
-
السلام عليكم ورحمة الله وبركاته ودي أسوي مود , الكل يقدر ينزله , المهم ودي اعرف كيف اغير شي ب المود من موقع , والتغير يطرأ على كل شخص منزل المود ؟
-
نسخ + لصق + مش فاهم الكود
-
x[ شرح الإشارات الرياضية في البرمجة ]x
^iiEcoo'x_) replied to ^iiEcoo'x_)'s topic in دروس في البرمجة
انت اروع هيمو -
اهلا بيك انت اجمل الله يسعدك * هذه الفترة مشغول
-
local MainT = {} -- main table for important elements local m1 = createMarker(2495.6821289063,-1686.439453125,12.515347480774,"cylinder",2,0,150,20,200) local MissionTeam = createTeam("MissionTeam",0,200,20) local ZombieTeam = createTeam("ZombieMission",200,0,20) local ZomniesTable = {172,173,174,175,176} MainT.ZombieKill = 0 local aMissionJoin_ = false function aOpenMission_ ( ) setTimer ( function ( ) outputChatBox ( ' Mission Open ' , root ) aMissionJoin_ = true end , 1000 * 60 * 2^2 , 1 ) end aOpenMission_ ( ) function MissonHit1Marker(E) if (E) and getElementType(E) == "player" then if aMissionJoin_ == false then return outputChatBox ( ' Mission Closed ' , E ) end triggerClientEvent(E,"seeGuiMisson",E) end end addEventHandler("onMarkerHit",m1,MissonHit1Marker) addEvent("ClickButtonsServer",true) addEventHandler("ClickButtonsServer",root, function(text) if (text == "Start") then triggerClientEvent(source,"seeGuiMisson",source) destroyElement(m1) MainT.Player = source MissionPart1() setPlayerTeam(MainT.Player,MissionTeam) addEventHandler("onPlayerWasted",MainT.Player,PlayerWasted) elseif(text == "Closed") then triggerClientEvent(source,"seeGuiMisson",source) end end) function MissionPart1() MainT.Suvivor = exports [ "slothBot" ]:spawnBot(2201.696, -1172.902, 1029.797,90,1,15,0,MissionTeam,24,"hunting") blipPP = createBlipAttachedTo(MainT.Suvivor,52,2) outputChatBox("Go to the MOTEL and Save Maria",MainT.Player) setTimer(function()for i=1,12 do i = exports [ "slothBot" ]:spawnBot( 2217.0888671875+math.random(-2,2),-1188.4528808594+math.random(-2,2),1029.796875,90,ZomniesTable[math.random(1,#ZomniesTable)],15,0,ZombieTeam,0,"chasing",MainT.Suvivor) setElementData(i,"ZombieMission",true)end end,1200,1) end addEventHandler("onPedWasted",root, function() if getElementData(source,"ZombieMission") then MainT.ZombieKill = MainT.ZombieKill+1 end if (MainT.ZombieKill == 12) then MissionPart2() MainT.ZombieKill = nil end if (source == MainT.Suvivor) then outputChatBox("Survivor killed, Mission Failed",MainT.Player) local Res = getResourceFromName("MissionSurvivor") destroyElement(blipPP) stopResource(Res) for k,v in ipairs(getElementsByType("ped")) do if getElementData(v,"ZombieMission") then destroyElement(v) end end end end ) function MissionPart2() exports [ "slothBot" ]:setBotFollow(MainT.Suvivor,MainT.Player) MainT.Heli = createVehicle(521,2223.9177246094,-1159.9803466797,25.740327835083) outputChatBox("Go to FCR-900",MainT.Player) addEventHandler("onVehicleEnter",MainT.Heli,MissionPart3) end function MissionPart3(p,seat) if (p == MainT.Player) then if(seat == 0) then MainT.Blip2=createBlip(-2464.6298828125,2251.3701171875,4.787636756897) MainT.Marker2=createMarker(-2464.6298828125,2251.3701171875,4.787636756897,"cylinder",2,0,150,20,200) warpPedIntoVehicle(MainT.Suvivor,source,1) addEventHandler("onMarkerHit",MainT.Marker2,MissionPart4) end end end function MissionPart4(E) if (E == MainT.Player) or (E == MainT.Heli) then local p = getVehicleController(MainT.Heli) or MainT.Player givePlayerMoney(p,30000) outputChatBox("Mission 1 Complete go for Mission 2 ",p) destroyElement(MainT.Heli) destroyElement(blipPP) MainT.Heli = nil destroyElement(MainT.Suvivor) MainT.Suvivor = nil destroyElement(MainT.Blip2) MainT.Blip2 = nil destroyElement(MainT.Marker2) MainT.Marker2 = nil end end function PlayerWasted() if (source == MainT.Player) then outputChatBox("You die, Mission Failed",MainT.Player) local Res = getResourceFromName("MissionSurvivor") stopResource(Res) destroyElement(blipPP) for k,v in ipairs(getElementsByType("ped")) do if getElementData(v,"ZombieMission") then destroyElement(v) end end end end
-
" اظن انك ما انتبهت ل كلمة " مثلا
-
fetchRemote استخدم ^ + URL الصورة ما تروح لانك رافعها عن طريق
-
اظن اللي حاطه غلط , هذا الفنكشن مثلا ودك تحط صورة ب السيرفر تقدر تستخدمه وتجيب الرابط وتحط صورة
-
لا تجيب سيرت اهلي لاني والله لو اصير واصلك ل اشلخك شلختين لا تسوي نفسك زلمة من ورا الكمبيوتر!
-
على ما اظن عمرك 10-11 سنة ,
-
اول شي في تحقق من الصحة ثاني شيء انت قلت لي المصوب عليه نتحقق من صحة مش الي يصوب
