-
Posts
575 -
Joined
-
Last visited
Everything posted by ivor
-
السالفة ماتحتاج انكم تكبروها لانه اولا الاخ الى عطاني الكود ماقرآ الكود حقي الى طرحت له بالكامل ماعرف انه فيه group_name + group_xp guiGridListSetItemText(Group_Top_Grid, row, 1, group["group_name"], false, false) guiGridListSetItemText(Group_Top_Grid, row, 2, group["group_xp"], false, true) الاخ مالاحظ ان بعد الروو رقم1 وهو اسم القروب في القريد ليست ورقم 2 الى الاكس بي في القريد ليست وفي الاخر موجود بلنسبة للرقم 3 وهو القروب لفل ماهو موجود ولا حتي التنظيم الاخ عطاني الكود بدون مايفهم الطلب
-
اولا عشان تعرف انا حدي عند القريد ليست لهنا ماقدر اسوي شي فوق طاقتي وانا مو عارفه عشان كذا بدي لو حتي مثال او تعديل ع الكود وبجرب فيه اكثر وبظبطة وبتعلم عليه
-
guiGridListSetItemText(GroupTop_GList, row, 1, value[1], false, false) guiGridListSetItemText(GroupTop_GList, row, 2, value[2], false, false) guiGridListSetItemColor(GroupTop_GList, row, 1, value[3], value[4], value[5]) guiGridListSetItemColor(GroupTop_GList, row, 2, value[3], value[4], value[5]) guiGridListSetSortingEnabled ( GroupTop_GList, false ) جربت ذول وماظبط والدي بق خالي من الاخطاء .. !
-
انا ماقلت لك تساعدني ولا قلت لك تحط جاهز تعليقك ما زود الا مشاركات لك لا اقل اتمني المشرفين يحذفوة لانه ماله اي فائدة
-
ياخوي انا مشغول ب أكثر من شي برمجي يعني اخش ع اكثر من شي اظبطة اتمني تحط انت بس هالكود وتعدل مابتخسر شي
-
guiGridListSetItemColor ( Group_Top_Grid, row, 255, 0, 0 ) تظبط كذا؟
-
الكود ظبط بس ع الاكس بي انا ابي اخلي اللون يصير ع الاسم حق القروب واللفل والاكس بي كيف؟
-
يب واشتغل تمام guiGridListSetItemColor ( Group_Top_Grid, row,1,2 3, 255, 0, 0 ) تظبط كذا؟ لو بخليها ع الكل الاسم واللفل والاكس بي
-
addEvent("GroupTOPList", true) addEventHandler("GroupTOPList", root, function(groups) guiGridListClear(Group_Top_Grid) for i, group in pairs(groups) do local row = guiGridListAddRow(Group_Top_Grid) guiGridListSetItemText(Group_Top_Grid, row, 1, group["group_name"], false, false) guiGridListSetItemText(Group_Top_Grid, row, 2, group["group_xp"], false, true) local xp = group["group_xp"] if ( tonumber(xp) >= 0 ) and ( tonumber(xp) <= 5000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 1", false, true) guiGridListSetItemColor ( Group_Top_Grid, row, 3, 255, 0, 0 ) elseif ( tonumber(xp) > 5000 ) and ( tonumber(xp) <= 10000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 2", false, true) guiGridListSetItemColor ( Group_Top_Grid, row, 3, 255, 0, 0 ) elseif ( tonumber(xp) > 10000 ) and ( tonumber(xp) <= 20000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 3", false, true) guiGridListSetItemColor ( Group_Top_Grid, row, 3, 255, 0, 0 ) elseif ( tonumber(xp) > 20000 ) and ( tonumber(xp) <= 40000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 4", false, true) guiGridListSetItemColor ( Group_Top_Grid, row, 3, 255, 0, 0 ) elseif ( tonumber(xp) > 40000 ) and ( tonumber(xp) <= 80000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 5", false, true) guiGridListSetItemColor ( Group_Top_Grid, row, 3, 255, 0, 0 ) elseif ( tonumber(xp) > 80000 ) and ( tonumber(xp) <= 160000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 6", false, true) guiGridListSetItemColor ( Group_Top_Grid, row, 3, 255, 100, 0 ) elseif ( tonumber(xp) > 160000 ) and ( tonumber(xp) <= 320000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 7", false, true) guiGridListSetItemColor ( Group_Top_Grid, row, 3, 255, 100, 0 ) elseif ( tonumber(xp) > 320000 ) and ( tonumber(xp) <= 640000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 8", false, true) guiGridListSetItemColor ( Group_Top_Grid, row, 3, 100, 255, 0 ) elseif ( tonumber(xp) > 640000 ) and ( tonumber(xp) <= 1000000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 9", false, true) guiGridListSetItemColor ( Group_Top_Grid, row, 3, 100, 255, 0 ) elseif ( tonumber(xp) > 1000000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 10", false, true) guiGridListSetItemColor ( Group_Top_Grid, row, 3, 100, 255, 0 ) end end end) م في مستحيل سمعتهم يقولون كذا صح؟
-
ddEvent("GroupTOPList", true) addEventHandler("GroupTOPList", root, function(groups) guiGridListClear(Group_Top_Grid) for i, group in pairs(groups) do local row = guiGridListAddRow(Group_Top_Grid) guiGridListSetItemText(Group_Top_Grid, row, 1, group["group_name"], false, false) guiGridListSetItemText(Group_Top_Grid, row, 2, group["group_xp"], false, true) local xp = group["group_xp"] if ( tonumber(xp) >= 0 ) and ( tonumber(xp) <= 5000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 1", false, true) elseif ( tonumber(xp) > 5000 ) and ( tonumber(xp) <= 10000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 2", false, true) elseif ( tonumber(xp) > 10000 ) and ( tonumber(xp) <= 20000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 3", false, true) elseif ( tonumber(xp) > 20000 ) and ( tonumber(xp) <= 40000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 4", false, true) elseif ( tonumber(xp) > 40000 ) and ( tonumber(xp) <= 80000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 5", false, true) elseif ( tonumber(xp) > 80000 ) and ( tonumber(xp) <= 160000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 6", false, true) elseif ( tonumber(xp) > 160000 ) and ( tonumber(xp) <= 320000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 7", false, true) elseif ( tonumber(xp) > 320000 ) and ( tonumber(xp) <= 640000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 8", false, true) elseif ( tonumber(xp) > 640000 ) and ( tonumber(xp) <= 1000000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 9", false, true) elseif ( tonumber(xp) > 1000000 ) then guiGridListSetItemText(Group_Top_Grid, row, 3, "LVL 10", false, true) end end end) ذي ؟ حسب مافهمت منك ذذ
-
Group_Top_Window = guiCreateWindow(x/2-185,y/2-225,370,440,"[ArabCommunity] - Groups Top",false) guiSetAlpha(Group_Top_Window, 0.9) guiWindowSetSizable(Group_Top_Window,false) Group_Top_Grid = guiCreateGridList(19,28,330,350,false,Group_Top_Window) guiGridListSetSelectionMode(Group_Top_Grid,1) guiGridListAddColumn(Group_Top_Grid,"Group",0.5) guiGridListAddColumn(Group_Top_Grid,"Xp",0.189) guiGridListAddColumn(Group_Top_Grid,"LVL",0.189) guiSetVisible(Group_Top_Window, false) Group_Top_Button = guiCreateButton(150,408,68,25,"Close",false,Group_Top_Window) guiSetProperty(Group_Top_Button, "HoverTextColour", "FFFFFC00") guiSetProperty(Group_Top_Button, "PushedTextColour", "FF00FF00") guiSetProperty(Group_Top_Button, "NormalTextColour", "FF00FCFF")
-
يب مود قروبات حق عرب كوم فيه Groups Top بس مافيه تنسيق يعني لو قروب لفل 10 تلقاه واخد المرتبه حقت انشاءة ابي يصير فيها ترتيب
-
انا قولت بطورة ي حلو وبنشرة ماقلت بخليه لي
-
سلام الله عليكم اظن ان معظمكم يعرف لوحة القروبات حقت عرب كوم المنشورة وابي اطورها مابي اطول فالكلام , بخش ف الموضوع انا ابي اكواد تخلي جروب توب فالاحتلال ملون يعني 1 الى 3 لون و من 3 الى 5 لون والتاني لون وشكرآ
-
خوادم العرب |Vps Al Arab|linux Vps - Windows VPS - Game Servers - Anti Doos
ivor replied to Dr.Marco's topic in الاستضافات
ماشاء الله واضحة هي !! .. الصورة تتكلم نيابة عني سرعه النت حقي في الابلواد 0.80 ميجا في الثانية والداونلواد 2.1 ميجا في الثانية البنق 42 وتيجي تقول المشكلة من نتي ؟ شوفوا الضغط ع الخادم حقكم الاول منه المشكلة -
ومع الصوت يوم يختفي بيسوي destroyElement?
-
outputChatBox('the player name ['..getAccountName(plr)..'] and he is data '..data..'.',255,0,0,true) جرب
-
local data=getElementData(player,'dataname') بدلها الي local data=getElementData(player,'Diamond') وخلصت السالفة
-
كودك ظبط تمام , الحين لو ابي احط صورة اول مايجي الصوت وتروح لما ينتهي وش استخدم من الاكواد
-
انا حاط كودك في كلينت وسويته كذا function music () sound = playSound( "shnowhaza.mp3" ) -- client only setSoundVolume(sound, 0.5) -- volume [ sound ] end addCommandHandler ( "shnohaza", music ) addEvent( "sound", true ) addEventHandler( "sound", localPlayer, music ) اكمل الحين واسوي سيرفر؟
