-
Posts
2,799 -
Joined
-
Days Won
13
Everything posted by </Mr.Tn6eL>
-
طيب حمل من المودات الشغالة على الاستضافة وارجع ارفعها مع تغير الاسم اذا اشتغلت مضبوط يعني المشكلة في المود حقك
-
admin_main افتح ملف ضع هذا السطر باول سطر local disallowedGroups = { ["group1"] = true, ["group2"] = true, ["ضع هنا المزيد"] = true, } function hasNoPermissionToUnmute() local groups_s = aPlayers[localPlayer]["groups"] local groups_t = (type(groups_s) == "string" and groups_s ~= "None") and split(groups_s, ", ") if groups_t then for k, v in ipairs(groups_t) do if disallowedGroups[v] then return true end end end return false end ابحث عن هذا السطر elseif ( source == aTab1.Mute ) then if not aPlayers[player]["mute"] then aMuteInputBox ( player ) else aMessageBox ( "question", "Are you sure to unmute "..name.."?", "unmute", player ) end استبدله بهذا elseif ( source == aTab1.Mute ) then if not hasNoPermissionToUnmute() then if not aPlayers[player]["mute"] then aMuteInputBox ( player ) else aMessageBox ( "question", "Are you sure to unmute "..name.."?", "unmute", player ) end end
-
في لخبطة اقرا الموضوع وتعرف
-
استخدام في السيرفر عشان يتزامن مع جميع الاعبين استخدام في الكلنت ما راح يتزامن مع باقي الاعبين يعني انت تشوف الشنطة bone_attach بالاضافة لوضع الشنطة بيد الاعب استخدام سكربت يكون اكثر واقعية
-
{}يجب عند تخزين جدول في جدول وضع اقواس الجداول table.insert(t, {x,y,x2,y2})
-
سوف تذبح وتقطع وتبهر وتطبخ وتؤكل ونز@%$ في البالوعة
-
سكربت رائع جداً بالتوفيق
- 6 replies
-
- mta sa
- developerahmed
-
(and 1 more)
Tagged with:
-
يبغالك نظام تزامن بحيث انك تسوي داتا وتسوي حدث اول مايتغير داتا الاسلحة تعطيه شادر وليس تي اكس دي عشان يصير لكل لاعب شكل مختلف بحيث انك تسوي ملف الشادر //-- Declare the texture. These are set using dxSetShaderValue( shader, "Tex0", texture ) texture Tex0; technique simple { pass P0 { //-- Set up texture stage 0 Texture[0] = Tex0; //-- Leave the rest of the states to the default settings } } وتسوي dxCreateShader dxCreateTexture dxSetShaderValue engineApplyShaderToWorldTexture engineRemoveShaderFromWorldTexture وكذا كل لاعب له تي اكس دي سلاح خاص وليس شكل
-
local accname = getAccountName(account) local LeveL = executeSQLQuery("SELECT * FROM `SaveLeveLSystem` WHERE Account=?", getPlayerAccount(accname)) الغلط في الجزية هذي مفروض العكس تجيب اكوانت الاعب بعدين تحط اسمه بالاستعلام
-
صحيح بدله ب getAccount
-
local resX, resY = guiGetScreenSize() function makeAnimationGUI() animationWindow = guiCreateWindow(445, 87, 355, 513, "Animation System|V.2|By Mazzika", false) guiSetVisible(animationWindow,false) guiSetAlpha(animationWindow, 0.87) animationCategoryList = guiCreateGridList(10, 23, 158, 356,false,animationWindow) animationList = guiCreateGridList(187, 23, 158, 356,false,animationWindow) column1 = guiGridListAddColumn(animationCategoryList,"Category",0.8) column2 = guiGridListAddColumn(animationList,"Animation",0.8) stopButton = guiCreateButton(97, 405, 158, 38, "Stop Animation", false, animationWindow) guiSetFont(stopButton, "default-bold-small") guiSetProperty(stopButton, "NormalTextColour", "FF4DFF00") addEventHandler("onClientGUIClick",stopButton,function() setPedAnimation(getLocalPlayer(),nil,nil) end) for k, v in ipairs (getElementsByType("animationCategory")) do local row = guiGridListAddRow(animationCategoryList) guiGridListSetItemText(animationCategoryList,row,column1,getElementID(v),false,false) end GUIEditor.edit[1] = guiCreateEdit(9, 474, 78, 29, "Version 1.2 !!", false, animationWindow) guiSetProperty(GUIEditor.edit[1], "NormalTextColour", "FF0013D5") guiEditSetReadOnly(GUIEditor.edit[1], true) GUIEditor.label[2] = guiCreateLabel(83, 449, 192, 15, "املأ لحظات الأنتظار بكثرة الأستغفارّّ", false, animationWindow) guiSetFont(GUIEditor.label[2], "default-bold-small") guiLabelSetColor(GUIEditor.label[2], 211, 184, 0) GUIEditor.label[3] = guiCreateLabel(143, 487, 202, 16, "سبحان اللهّ وبحمدة سبحان اللهّ العظيم", false, animationWindow) guiSetFont(GUIEditor.label[3], "default-bold-small") guiLabelSetColor(GUIEditor.label[3], 0, 203, 210) GUIEditor.label[4] = guiCreateLabel(97, 384, 158, 17, "نظام الحركات الأصدار الأول!!", false, animationWindow) guiSetFont(GUIEditor.label[4], "default-bold-small") guiLabelSetColor(GUIEditor.label[4], 238, 0, 253) addEventHandler("onClientGUIClick",animationCategoryList,getAnimations) addEventHandler("onClientGUIClick",animationList,setAnimation) end addEventHandler("onClientResourceStart",getResourceRootElement(getThisResource()),makeAnimationGUI) function toggleVisible() if (guiGetVisible(animationWindow) == false) then guiSetVisible(animationWindow,true) showCursor(true) else guiSetVisible(animationWindow,false) showCursor(false) end end bindKey("F2","down",toggleVisible) function getAnimations() selectedCategory = guiGridListGetItemText(animationCategoryList,guiGridListGetSelectedItem(animationCategoryList),1) if (selectedCategory ~= "") then guiGridListClear(animationList) for k, v in ipairs (getElementChildren(getElementByID(selectedCategory))) do local row = guiGridListAddRow(animationList) guiGridListSetItemText(animationList,row,column1,getElementID(v),false,false) end end if (selectedCategory == "") then guiGridListClear(animationList) end end function setAnimation() selectedAnimation = guiGridListGetItemText(animationList,guiGridListGetSelectedItem(animationList),1) if (selectedAnimation ~= "") then if (not isPlayerDead(getLocalPlayer())) then if (isPedInVehicle(getLocalPlayer()) == false) then local animationBlock = getElementData(getElementByID(selectedAnimation),"block") local animationID = getElementData(getElementByID(selectedAnimation),"code") triggerServerEvent("setAnimation",getLocalPlayer(),animationBlock,animationID) else outputChatBox("You cannot use animations while in a vehicle.",255,0,0) end else outputChatBox("You cannot use animations while you are dead.",255,0,0) end end end
-
اتوقع تسوي نظام سلاح وهمي يعني تحط موديل سلاحك على سلاح اصلي ويصير جديد
-
انا أعلم انها لغة قوية لكن انت تقول لمبتدأ تعلمها ...اوافقك الرأي انها تعلمك كيف يعمل الكمبيوتر ونظم التشغيل الخ لكن بالنسبة الى مبتدأ لا يعرف شي تقوله اذهب للسي ؟! انا سنتين بالكثير تعلمت لوا ومازلت اتعلم الجديد كل يوم بالنسبة للسي لمبتدأ فهو عالم أو نقل كون واسع وبالنسبة أيضا للفرق بين سي و سي ++ في فرق كبير وحيث سي++ احدث وأشهر وتدعم oop وسي اقدم
-
احذف اذا سطر 4 وسطر 5 خليه زي ماقلك عبد الكريم
-
احتمال احد الشروط الموجودة لم تتم بالشكل المطلوب تأكد من اسماء الاعبين مع اكواد الوانهم وتأكد ان الاعب مسجل او احتمال المشكلة بالكلنت
-
addEvent("m1",true) addEventHandler("m1",root, function (player1, player2, T1) local player1 = getPlayerFromName(player1) if isElement(player1) then local T1 = 1*24*60000 local account = getPlayerAccount(player1) if account and not isGuestAccount(account) then local acc = getAccountName(account) if isObjectInACLGroup ( 'user.'..acc, aclGetGroup ( player2 ) ) then return end aclGroupAddObject (aclGetGroup(player2), "user."..acc) setTimer ( function (acc) if not isObjectInACLGroup ( 'user.'..acc, aclGetGroup ( player2 ) ) then return end aclGroupRemoveObject ( aclGetGroup( player2 ),'user.'..acc ) end,T1,1,acc) end end end )
-
لا داعي اذا لمساعدتك ان لم تكن اكواد المشكلة معروضة وأيضا يمكنك المراسلة بالخاص بدون انشاء موضوع جديد
-
لانك حاط قيم الجدول جداول خلها كذا local Table = { "Admin", "Admin2", "Admin3", }
-
مود جميل جداً
-
الطرشي نعمة
-
مود جميل جداً واصل بالطرح
-
انت تقول خطا كبير تبدا تتعلم جافا وانت مبتدأ لكن انت تقول تعلم السي اين المنطق؟