-
Posts
2,799 -
Joined
-
Days Won
13
Everything posted by </Mr.Tn6eL>
-
اذ هي موجودة بالويكي كيف صارت مجهولة
-
الfor مالها else لانه مو تحقق بالاساس for k,v in ipairs(getElementsByType("player")) do redirectPlayer (v, IP, tonumber(Port), Password) else redirectPlayer (v, IP, tonumber(Port)) end
-
مود جميل بالتوفيق
-
اعمل جدول فنيشنات وسميه تخريب تايم يب تقدر ض1 بس احب اسوي كذا "onClientPreRender" outputChatBox يقولون جيد
-
حاول تسوي نظام باسورد وتشفر المود وتحط الحقوق اول مايشغل المود سوي كنسل ايفنت ويسوي ترايقر للكلنت طبعا للي عندهم رتبة كونسل واظهر اللوحة تسوي لوحة وتحط ايديت وزر يحط الباس بالايديت ويضغط الزر يرسل الامر للسيرفر اذ كان الباس صحيح يشغل المود اذ كان خاطئ سوي اللي تبي كيك او تخريب اللي يعجبك الفنكشنات "onResourceStart" getElementsByType getPlayerAccount isObjectInACLGroup aclGetGroup cancelEvent triggerClientEvent guiSetVisible showCursor "onClientGUIClick" guiGetText triggerServerEvent getThisResource startResource
-
اصلا كودي واضح addCommandHandler("servergo", function(_, _, ip, port) if ip and tonumber(port) then for k,v in ipairs(getElementsByType("player")) do if not redirectPlayer(v, ip, tonumber(port)) then outputChatBox("حدث خطا بنقل الاعبين الرجاء التاكد من صحة الاي بي والبورت") end end end end) وكوده خاطئ
-
مافي طريقة تسويها بمود انت ركب الحماية بالخادم
-
وبخصوص اللفل تقدر تسويه جدول مثل م طرح لك الاخ الوحش وتسوي عليه لوب استخدم الايفنت ذا "onAccountDataChange" addEventHandler ("onPlayerWasted", root, function (_, killer) if (killer and getElementType (killer) == "player") then local checkGuest = getPlayerAccount ( killer ) if ( not isGuestAccount ( checkGuest ) ) then setAccountData (checkGuest, "kills", (getAccountData (checkGuest, "kills") or 0) + 1) end end end ) الفنكشن مو المنت داتا اكوانت داتا عشان كذا بدل killer بـ checkGuest
-
الله يستر
-
لا امسك جرب addCommandHandler("servergo", function(_, _, ip, port) if ip and tonumber(port) then for k,v in ipairs(getElementsByType("player")) do if not redirectPlayer(v, ip, tonumber(port)) then outputChatBox("حدث خطا بنقل الاعبين الرجاء التاكد من صحة الاي بي والبورت") end end end end)
-
+yazen بيجيك زلمة كبير انا وزني 57 بس طولي معرفه ويمكن الوزن قسته قبل سنتين
-
قريبا مود مدرسة تعليم قيادة السيارات (الرخصة) من قبلي
</Mr.Tn6eL> replied to I_Mr.[T]he[P]rInCe's topic in المساهمات
بالتوفيق -
قال كلام مايشوفونه الا لقروب معين يبي يسوي شات للقروب
-
getElementsByType getElementData outputChatBox
-
مسجل بالمنتدى عشان تشوف طولنا
-
هذا امريكا الله يحرقهم يخرفون بالقرآن وينشرونه واسمه مثلث التوحيد
-
bool setAccountData ( account theAccount, string key, string value )
-
guiSetInputEnabled الوظيفة تلغي bindKey ينفس المود
-
قيم مود معدل ؟ اضفت شي للقيم مود ؟ جرب الاصلي ونشوف
-
guiGetVisible استخدمها للتحقق من النافذة مفتوحة ولالا
-
اتوقع بفلوس يمكن واحد قلبه طيب يبرمج لكـ ههه [ مستحيل [
-
اتوقع بفلوس
-
كود كثير بس اكتشفت اخطاء صغيرة local blip2 = createBlip (1536.27, -1686.387, 13.546,5) addEventHandler( "onClientResourceStart", resourceRoot, function ( ) criminal = guiCreateLabel(50, 246, 191, 24, "CTF :- Capturing Criminal location", false) progress = guiCreateProgressBar(44, 280, 207, 32, false) marker = createMarker (1536.27, -1686.387, 13.546,"cylinder", 2, 255, 255, 255, 255) guiSetVisible ( progress, false ) guiSetVisible ( criminal, false ) guiSetFont(criminal, "default-bold-small") guiLabelSetColor(criminal, 255, 0, 0) setElementDimension ( marker, 2 ) Police = guiCreateLabel(50, 246, 191, 24, "CTF :- Capturing Police location", false) progressp = guiCreateProgressBar(44, 280, 207, 32, false) markerp = createMarker (1536.27, -1686.387+5, 13.546,"cylinder", 2, 255, 255, 255, 255) guiSetVisible ( progressp, false ) guiSetVisible ( Police, false ) guiSetFont(Police, "default-bold-small") guiLabelSetColor(Police, 0, 0, 255) setElementDimension ( markerp, 2 ) end ) addEventHandler ( "onClientMarkerHit", resourceRoot, function ( element ) if ( source == marker ) then if ( element == getLocalPlayer ( ) and not getPedOccupiedVehicle ( element ) ) then if ( getElementDimension ( element ) == 2 ) then local Teams = getTeamFromName('criminal') if (Teams) then if ( getPlayersInTeam (Teams) )then -- guiSetVisible ( criminal, true ) guiSetVisible ( progress, true ) guiProgressBarSetProgress ( progress, 0 ) function updateProgress ( ) guiProgressBarSetProgress ( progress, guiProgressBarGetProgress ( progress ) + 1 ) if ( guiProgressBarGetProgress ( progress ) == 100 ) then guiSetVisible ( progress, false ) guiSetVisible ( criminal, false ) outputChatBox ( "* CTF Completed" ) triggerServerEvent("CtfP", localPlayer) guiProgressBarSetProgress ( progress, 0 ) if isTimer ( timer ) then killTimer ( timer ) end end end end timer = setTimer ( updateProgress, 50, 0) end end end end end) addEventHandler ( "onClientMarkerLeave", resourceRoot, function ( element ) if ( source == marker ) then if ( element == getLocalPlayer ( ) and not getPedOccupiedVehicle ( element ) ) then if isTimer ( timer ) then killTimer ( timer ) timer = nil guiProgressBarSetProgress ( progress, 0 ) guiSetVisible ( progress, false ) guiSetVisible ( criminal, false ) end end end end) ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- addEventHandler ( "onClientMarkerHit", resourceRoot, function ( element ) if ( source == markerp ) then if ( element == getLocalPlayer ( ) and not getPedOccupiedVehicle ( element ) ) then if ( getElementDimension ( element ) == 2 ) then local Teamsp = getTeamFromName('Police') if (Teamsp) then if ( getPlayersInTeam (Teamsp) )then guiSetVisible ( Police, true ) guiSetVisible ( progress, true ) guiProgressBarSetProgress ( progress, 0 ) function updateProgressp ( ) guiProgressBarSetProgress ( progressp, guiProgressBarGetProgress ( progressp ) + 1 ) if ( guiProgressBarGetProgress ( progressp ) == 100 ) then guiSetVisible ( progressp, false ) guiSetVisible ( Police, false ) outputChatBox ( "* CTF Completed" ) triggerServerEvent("CtfP", localPlayer) guiProgressBarSetProgress ( progressp, 0 ) if isTimer ( timerp ) then killTimer ( timerp ) end end end end timerp = setTimer ( updateProgressp, 50, 0) end end end end end) addEventHandler ( "onClientMarkerLeave", resourceRoot, function ( element ) if ( source == markerp ) then if ( element == getLocalPlayer ( ) and not getPedOccupiedVehicle ( element ) ) then if isTimer ( timerp ) then killTimer ( timerp ) timerp = nil guiProgressBarSetProgress ( progress, 0 ) guiSetVisible ( progress, false ) guiSetVisible ( criminal, false ) end end end end)
-
function Pro (thePlayer) redirectPlayer(thePlayer,"IP",Port) end addCommandHandler("servergo", Pro) نسيت
-
مره على اخر شي خخخخ دام انك فاضي سو لنا الماب ياخي سريع سريع ض1 يبي يغير جو مثلي