Jump to content

saydoo122

Members
  • Posts

    13
  • Joined

  • Last visited

Details

  • Gang
    [BJ]

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

saydoo122's Achievements

Square

Square (6/54)

0

Reputation

  1. ما حصلت صوره اخويي بس اعتقد اقدر أوضح الك تكون ف الماب اديتور اذا آخذ سياره حق اسوي ماب للريس لازم آخذ قياسات للنطه وكذا فيه مود اعتقد تضرب CTRL+R يطلع الك المود مثل التوب بوكس ع جنب بعد كذا تضرب حرف R يخرج خط من وراء السياره عند ما تمشي يطلع خط ع المكان الي مشيته ترجع ع ماب اديتور وتشوف الخط وتخلي الأوبحكت جنبه يعني هذا المود يستعمل حق قياس وشكرا ...
  2. ماتدري شنوليه مسوي الموضوع وضح اكثر اخي موجود فيه مود تشغلة تضرب حرف R ويطلع خط وراء السياره حق تساوي نطة ف ماب ريس مثلا تاخخذ قياسات
  3. اعتقد انه مود بسيط بس امبيه مو محصله ابي مود الي اذا تمشي سيارة اذا رح تسوي ماب ريس تطلع خط وراكك حق تعرق القياس ومدري شنو
  4. شباب المود واضحح من العنوان ..~
  5. انا ماخذ بعض الكودات من شخص غير محاولة فقط ..~
  6. السلام عيكم ورحمة الله وبركاته ~~~ اليوم انا عملت لوحة تسجيل ~ لككن للأسف ما ضبطت معاي مدري هي من الكودات او شيء ثاني ّ ~~~~~~~~~~~ المهم .. انا ابيكم تساعدوني ي اخوان ~ وهذي الكودات حقت اللوحة الكلنت fadeCamera(true, 6, 0, 0, 0) setCameraMatrix(-1475.5, 831.18, 65.5, -1487.5, 800.18, 65.5) ---------------------------------- -----------| Settings |----------- ---------------------------------- enableKickPlayer = true -- Set whether to kick the player after they fail to login specified amount of times. disallowLogout = false -- Set whether to show the userpanel to the players if they log out of their accounts. maxLoginAttempts = 5 -- Set the maximum incorrect login attempts before the player gets kicked - If player kicking is enabled. ---------------------------------- -- Set the text you want displayed in the "rules" window here - use '\n' to go into the next line infoText = "------ Rules ------ \n\n* No cheating!\n* No insulting and spamming!\n* No vehicle mods\n\nEdit the text however you like\n\n\n\n\n\n\n\nLogin panel by BiG,BoSs" -- Screen and GUI window sizes screenWidth,screenHeight = guiGetScreenSize() mainWidth,mainHeight = 749,472 regWidth,regHeight = 439,344 -- Generate the XML file name function getServerName() triggerServerEvent("onClientLoginLoaded",getLocalPlayer()) end addEventHandler("onClientResourceStart",getResourceRootElement(getThisResource()),getServerName) function setXmlFileName(sName) xmlFileName = tostring("login_"..sName..".xml") loginPanel() end addEvent("onGetServerData",true) addEventHandler("onGetServerData",getRootElement(),setXmlFileName) ---------------------------------- addEvent("onRequestIncreaseAttempts",true) addEvent("onRequestDisplayPanel",true) function loginPanel() -- Check if autologin is enabled - If yes, then log the player in, else create and show the userpanel local xmlFile = xmlLoadFile(xmlFileName) if xmlFile then status = xmlNodeGetAttribute(xmlFile,"autologin") if (status == "true") then local username = tostring(xmlNodeGetAttribute(xmlFile,"username")) local password = tostring(xmlNodeGetAttribute(xmlFile,"password")) if not (username == "") and not (password == "") then triggerServerEvent("onRequestAutologin",getLocalPlayer(),username,password) end else if blackLoginScreen == true then fadeCamera(false,0,0,0,0) end GUIEditor = { button = {}, staticimage = {}, label = {}, memo = {} } addEventHandler("onClientResourceStart", resourceRoot, function() login = guiCreateWindow(143, 114, 467, 372, "login-Panel By #BiG,BoSs~", false) guiWindowSetSizable(login, false) GUIEditor.staticimage[1] = guiCreateStaticImage(9, 19, 448, 343, ":login-panel/images/SoftWaves.png", false, login) GUIEditor.memo[1] = guiCreateMemo(224, 127, 220, 32, "", false, GUIEditor.staticimage[1]) GUIEditor.memo[2] = guiCreateMemo(223, 170, 221, 31, "", false, GUIEditor.staticimage[1]) GUIEditor.button[1] = guiCreateButton(227, 230, 211, 86, "Login", false, GUIEditor.staticimage[1]) guiSetFont(GUIEditor.button[1], "sa-header") guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF51ADAC") GUIEditor.button[2] = guiCreateButton(10, 230, 213, 86, "Register ", false, GUIEditor.staticimage[1]) guiSetFont(GUIEditor.button[2], "sa-header") guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FEEFE707") GUIEditor.label[1] = guiCreateLabel(10, 125, 211, 35, "USERNAME :~", false, GUIEditor.staticimage[1]) guiSetFont(GUIEditor.label[1], "sa-header") guiLabelSetColor(GUIEditor.label[1], 0, 0, 0) guiLabelSetHorizontalAlign(GUIEditor.label[1], "right", false) GUIEditor.label[2] = guiCreateLabel(10, 170, 211, 31, "PASSWORD :~", false, GUIEditor.staticimage[1]) guiSetFont(GUIEditor.label[2], "sa-header") guiLabelSetColor(GUIEditor.label[2], 0, 0, 0) guiLabelSetHorizontalAlign(GUIEditor.label[2], "right", false) end ) guiSetVisible(GUIEditor_Window[1], true) guiSetInputEnabled(true) showCursor(true) addEventHandler("onClientGUIClick",btnLogin,onClickLogin) addEventHandler("onClientGUIClick",btnToggleRegister,onClickRegisterToggle) addEventHandler("onClientGUIClick",btnPlayAsGuest,onClickGuest) addEventHandler("onClientGUIClick",btnConfirmRegistration,onClickRegisterConfirm) addEventHandler("onClientGUIClick",btnCancel,onClickCancel) addEventHandler("onRequestIncreaseAttempts",getRootElement(),increaseAttempts) attemptedLogins = 0 end xmlUnloadFile(xmlFile) else xmlFileHandler(true) end addEventHandler("onRequestDisplayPanel",getRootElement(),logoutHandler) end --addEventHandler("onClientResourceStart",getResourceRootElement(getThisResource()),loginPanel) -- Disable autologin function removeAutoLogin() local xmlFile = xmlLoadFile(xmlFileName) if xmlFile then local status = xmlNodeGetAttribute(xmlFile,"autologin") if status == "true" then xmlNodeSetAttribute(xmlFile,"autologin","false") outputChatBox("#0000FF* #FFFFFFAuto-login is now #FF0000DISABLED#FFFFFF!",255,255,255,true) xmlSaveFile(xmlFile) xmlUnloadFile(xmlFile) else outputChatBox("#0000FF* #FFFFFFAuto-login is already #FF0000DISABLED#FFFFFF!",255,255,255,true) xmlUnloadFile(xmlFile) end end end addCommandHandler("disableauto", removeAutoLogin) -- Enable autologin function addAutoLogin() local xmlFile = xmlLoadFile(xmlFileName) if xmlFile then local status = xmlNodeGetAttribute(xmlFile,"autologin") if status == "false" then xmlNodeSetAttribute(xmlFile,"autologin","true") outputChatBox("#0000FF* #FFFFFFAuto-login is now #00FF00ENABLED#FFFFFF! You will be automatically logged in every time you join the server.",255,255,255,true) setTimer(outputChatBox,1000,1,"#0000FF* #FFFFFFTo #FF0000DISABLE#FFFFFF auto-login, use #ABCDEF/disableauto#FFFFFF!",255,255,255,true) xmlSaveFile(xmlFile) xmlUnloadFile(xmlFile) else outputChatBox("#0000FF* #FFFFFFAuto-login is already #00FF00ENABLED#FFFFFF!",255,255,255,true) xmlUnloadFile(xmlFile) end end end addCommandHandler("enableauto", addAutoLogin) -- LOGIN PLAYER function onClickLogin(button,state) if(button == "left" and state == "up") then if (source == btnLogin) then username = guiGetText(editUsername) password = guiGetText(editPassword) triggerServerEvent("onRequestLogin",getLocalPlayer(),username,password,enableKickPlayer,attemptedLogins,maxLoginAttempts) xmlFileHandler() end end end -- REGISTER PLAYER function onClickRegisterConfirm(button,state) if(button == "left" and state == "up") then if (source == btnConfirmRegistration) then username = guiGetText(editRegistrationUsername) password = guiGetText(editRegistrationPassword) passwordConfirm = guiGetText(editRegistrationRepeatPassword) triggerServerEvent("onRequestRegister",getLocalPlayer(),username,password,passwordConfirm) end end end -- Open registration window function onClickRegisterToggle(button,state) if(button == "left" and state == "up") then if (source == btnToggleRegister) then guiSetVisible(registerWindow, true) guiBringToFront(registerWindow) guiSetInputEnabled(true) showCursor(true) end end end -- Cancel registration function onClickCancel(button,state) if(button == "left" and state == "up") then if (source == btnCancel) then guiSetVisible(mainWindow, true) guiSetVisible(registerWindow, false) guiSetInputEnabled(true) showCursor(true) end end end -- Guest mode function onClickGuest(button,state) if(button == "left" and state == "up") then if (source == btnPlayAsGuest) then guiSetVisible(GUIEditor_Window[1], false) guiSetInputEnabled(false) showCursor(false) outputChatBox("#0000FF* #FFFFFFYou've chosen to play as a #ABCDEFGUEST#FFFFFF!",255,255,255,true) triggerServerEvent("onRequestGuest",getLocalPlayer(), "Guest mode") if blackLoginScreen == true then fadeCamera(true,removeBlackScreenTime) end end end end -- Show login window function showLoginWindow() guiSetVisible(GUIEditor_Window[1], true) guiSetInputEnabled(true) showCursor(true) end addEvent("showLoginWindow", true) addEventHandler("showLoginWindow",getRootElement(),showLoginWindow) -- Hide login window function hideLoginWindow()
  7. اخواني لقد صنعت لوحة تسجيل من الأخير ~ اخواني اللوحة ما اشتغلت ومدري شصار فيها اذا تسمحون تعدلون الي الكودات يمكن ؟ الكلنت fadeCamera(true, 6, 0, 0, 0) setCameraMatrix(-1475.5, 831.18, 65.5, -1487.5, 800.18, 65.5) ---------------------------------- -----------| Settings |----------- ---------------------------------- enableKickPlayer = true -- Set whether to kick the player after they fail to login specified amount of times. disallowLogout = false -- Set whether to show the userpanel to the players if they log out of their accounts. maxLoginAttempts = 5 -- Set the maximum incorrect login attempts before the player gets kicked - If player kicking is enabled. ---------------------------------- -- Set the text you want displayed in the "rules" window here - use '\n' to go into the next line infoText = "------ Rules ------ \n\n* No cheating!\n* No insulting and spamming!\n* No vehicle mods\n\nEdit the text however you like\n\n\n\n\n\n\n\nLogin panel by BiG,BoSs" -- Screen and GUI window sizes screenWidth,screenHeight = guiGetScreenSize() mainWidth,mainHeight = 749,472 regWidth,regHeight = 439,344 -- Generate the XML file name function getServerName() triggerServerEvent("onClientLoginLoaded",getLocalPlayer()) end addEventHandler("onClientResourceStart",getResourceRootElement(getThisResource()),getServerName) function setXmlFileName(sName) xmlFileName = tostring("login_"..sName..".xml") loginPanel() end addEvent("onGetServerData",true) addEventHandler("onGetServerData",getRootElement(),setXmlFileName) ---------------------------------- addEvent("onRequestIncreaseAttempts",true) addEvent("onRequestDisplayPanel",true) function loginPanel() -- Check if autologin is enabled - If yes, then log the player in, else create and show the userpanel local xmlFile = xmlLoadFile(xmlFileName) if xmlFile then status = xmlNodeGetAttribute(xmlFile,"autologin") if (status == "true") then local username = tostring(xmlNodeGetAttribute(xmlFile,"username")) local password = tostring(xmlNodeGetAttribute(xmlFile,"password")) if not (username == "") and not (password == "") then triggerServerEvent("onRequestAutologin",getLocalPlayer(),username,password) end else if blackLoginScreen == true then fadeCamera(false,0,0,0,0) end GUIEditor = { button = {}, staticimage = {}, label = {}, memo = {} } addEventHandler("onClientResourceStart", resourceRoot, function() login = guiCreateWindow(143, 114, 467, 372, "login-Panel By #BiG,BoSs~", false) guiWindowSetSizable(login, false) GUIEditor.staticimage[1] = guiCreateStaticImage(9, 19, 448, 343, ":login-panel/images/SoftWaves.png", false, login) GUIEditor.memo[1] = guiCreateMemo(224, 127, 220, 32, "", false, GUIEditor.staticimage[1]) GUIEditor.memo[2] = guiCreateMemo(223, 170, 221, 31, "", false, GUIEditor.staticimage[1]) GUIEditor.button[1] = guiCreateButton(227, 230, 211, 86, "Login", false, GUIEditor.staticimage[1]) guiSetFont(GUIEditor.button[1], "sa-header") guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF51ADAC") GUIEditor.button[2] = guiCreateButton(10, 230, 213, 86, "Register ", false, GUIEditor.staticimage[1]) guiSetFont(GUIEditor.button[2], "sa-header") guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FEEFE707") GUIEditor.label[1] = guiCreateLabel(10, 125, 211, 35, "USERNAME :~", false, GUIEditor.staticimage[1]) guiSetFont(GUIEditor.label[1], "sa-header") guiLabelSetColor(GUIEditor.label[1], 0, 0, 0) guiLabelSetHorizontalAlign(GUIEditor.label[1], "right", false) GUIEditor.label[2] = guiCreateLabel(10, 170, 211, 31, "PASSWORD :~", false, GUIEditor.staticimage[1]) guiSetFont(GUIEditor.label[2], "sa-header") guiLabelSetColor(GUIEditor.label[2], 0, 0, 0) guiLabelSetHorizontalAlign(GUIEditor.label[2], "right", false) end ) guiSetVisible(GUIEditor_Window[1], true) guiSetInputEnabled(true) showCursor(true) addEventHandler("onClientGUIClick",btnLogin,onClickLogin) addEventHandler("onClientGUIClick",btnToggleRegister,onClickRegisterToggle) addEventHandler("onClientGUIClick",btnPlayAsGuest,onClickGuest) addEventHandler("onClientGUIClick",btnConfirmRegistration,onClickRegisterConfirm) addEventHandler("onClientGUIClick",btnCancel,onClickCancel) addEventHandler("onRequestIncreaseAttempts",getRootElement(),increaseAttempts) attemptedLogins = 0 end xmlUnloadFile(xmlFile) else xmlFileHandler(true) end addEventHandler("onRequestDisplayPanel",getRootElement(),logoutHandler) end --addEventHandler("onClientResourceStart",getResourceRootElement(getThisResource()),loginPanel) -- Disable autologin function removeAutoLogin() local xmlFile = xmlLoadFile(xmlFileName) if xmlFile then local status = xmlNodeGetAttribute(xmlFile,"autologin") if status == "true" then xmlNodeSetAttribute(xmlFile,"autologin","false") outputChatBox("#0000FF* #FFFFFFAuto-login is now #FF0000DISABLED#FFFFFF!",255,255,255,true) xmlSaveFile(xmlFile) xmlUnloadFile(xmlFile) else outputChatBox("#0000FF* #FFFFFFAuto-login is already #FF0000DISABLED#FFFFFF!",255,255,255,true) xmlUnloadFile(xmlFile) end end end addCommandHandler("disableauto", removeAutoLogin) -- Enable autologin function addAutoLogin() local xmlFile = xmlLoadFile(xmlFileName) if xmlFile then local status = xmlNodeGetAttribute(xmlFile,"autologin") if status == "false" then xmlNodeSetAttribute(xmlFile,"autologin","true") outputChatBox("#0000FF* #FFFFFFAuto-login is now #00FF00ENABLED#FFFFFF! You will be automatically logged in every time you join the server.",255,255,255,true) setTimer(outputChatBox,1000,1,"#0000FF* #FFFFFFTo #FF0000DISABLE#FFFFFF auto-login, use #ABCDEF/disableauto#FFFFFF!",255,255,255,true) xmlSaveFile(xmlFile) xmlUnloadFile(xmlFile) else outputChatBox("#0000FF* #FFFFFFAuto-login is already #00FF00ENABLED#FFFFFF!",255,255,255,true) xmlUnloadFile(xmlFile) end end end addCommandHandler("enableauto", addAutoLogin) -- LOGIN PLAYER function onClickLogin(button,state) if(button == "left" and state == "up") then if (source == btnLogin) then username = guiGetText(editUsername) password = guiGetText(editPassword) triggerServerEvent("onRequestLogin",getLocalPlayer(),username,password,enableKickPlayer,attemptedLogins,maxLoginAttempts) xmlFileHandler() end end end -- REGISTER PLAYER function onClickRegisterConfirm(button,state) if(button == "left" and state == "up") then if (source == btnConfirmRegistration) then username = guiGetText(editRegistrationUsername) password = guiGetText(editRegistrationPassword) passwordConfirm = guiGetText(editRegistrationRepeatPassword) triggerServerEvent("onRequestRegister",getLocalPlayer(),username,password,passwordConfirm) end end end -- Open registration window function onClickRegisterToggle(button,state) if(button == "left" and state == "up") then if (source == btnToggleRegister) then guiSetVisible(registerWindow, true) guiBringToFront(registerWindow) guiSetInputEnabled(true) showCursor(true) end end end -- Cancel registration function onClickCancel(button,state) if(button == "left" and state == "up") then if (source == btnCancel) then guiSetVisible(mainWindow, true) guiSetVisible(registerWindow, false) guiSetInputEnabled(true) showCursor(true) end end end -- Guest mode function onClickGuest(button,state) if(button == "left" and state == "up") then if (source == btnPlayAsGuest) then guiSetVisible(GUIEditor_Window[1], false) guiSetInputEnabled(false) showCursor(false) outputChatBox("#0000FF* #FFFFFFYou've chosen to play as a #ABCDEFGUEST#FFFFFF!",255,255,255,true) triggerServerEvent("onRequestGuest",getLocalPlayer(), "Guest mode") if blackLoginScreen == true then fadeCamera(true,removeBlackScreenTime) end end end end -- Show login window function showLoginWindow() guiSetVisible(GUIEditor_Window[1], true) guiSetInputEnabled(true) showCursor(true) end addEvent("showLoginWindow", true) addEventHandler("showLoginWindow",getRootElement(),showLoginWindow) -- Hide login window function hideLoginWindow()
  8. تسلمون ع المساعدة اخواني .. انشاء الله نخدمكم ف المرات الجايه ^
  9. تسسلم اخي + انشاء الله اخي تمت التجربه بس يوجد مشكلة وهي اذا اخترت السيارة يطلع 2 مثل بعض
  10. السسلام عليكم شباب .. ذكرت ف البوست الأول حقي انه انا اول مره اسوي مود فأرجو ان تسامحونني حاولت اعمل مود ثاني لكن للأسف للمرة الثانيه لم يضبط معي المود عبارة عن لوحة أختيار السيارات يفتح بأف 1 و اذا شغلت المود يطلع كتابة بالشات وكتابة ملونه وأيضا اذا دخلت السيرفر ما تطلع اللوحة بوجهكك لككن لم يضبط معي لأنني اول مره اعمل مود كذا وكنت ابي اتعلم اخواني .. وشكرا .. تحياتي هذا ملف الكلنت GUIEditor = { button = {}, label = {}, memo = {} } addEventHandler("onClientResourceStart", guiSetVisible (Car,false), resourceRoot, function() Car = guiCreateWindow(185, 85, 443, 408, "Select Car ~# By BiG,BoSs~", false) guiWindowSetSizable(Car, false) guiSetProperty(Car, "CaptionColour", "FF83F608") GUIEditor.label[1] = guiCreateLabel(-4, 18, 454, 40, "Select a Car ..: Press a name of Car :..", false, Car) guiSetFont(GUIEditor.label[1], "sa-header") guiLabelSetColor(GUIEditor.label[1], 159, 159, 159) guiLabelSetHorizontalAlign(GUIEditor.label[1], "center", false) GUIEditor.button[1] = guiCreateButton(9, 58, 424, 79, "Infernus", false, Car) guiSetFont(GUIEditor.button[1], "sa-header") guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FF1907BF") GUIEditor.button[2] = guiCreateButton(9, 147, 424, 85, "Banshee", false, Car) guiSetFont(GUIEditor.button[2], "sa-header") guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFFC0101") GUIEditor.memo[1] = guiCreateMemo(10, 334, 423, 64, "This Resours Created By ~BiG,BoSs~\nDo Not Change information\nThank You ....", false, Car) guiMemoSetReadOnly(GUIEditor.memo[1], true) GUIEditor.button[3] = guiCreateButton(9, 242, 424, 87, "Ranger", false, Car) guiSetFont(GUIEditor.button[3], "sa-header") guiSetProperty(GUIEditor.button[3], "NormalTextColour", "FFFAFD00") end ) function() if ( source == GUIEditor.button[1] ) then triggerServerEvent("car1",getLocalPlayer()) elseif ( source == GUIEditor.button[2] ) then triggerServerEvent("car2",getLocalPlayer()) elseif ( source == GUIEditor.button[3] ) then triggerServerEvent("car3",getLocalPlayer()) end end ) outputChatBox("Select a Car By BiG,BoSs Press F1", 255, 0, 0) guiSetVisible (Car, false) function OpenWin() if guiGetVisible ( Car ) then guiSetVisible ( Car, false ) showCursor(false) guiSetInputEnabled(false) else guiSetVisible ( Car, true ) showCursor(true) guiSetInputEnabled(true) end end bindKey("F1", "down", OpenWin) وهذا أيضا ملف السيرفر vehicle = {} addEvent("car1", true) addEventHandler("car1", root, function() if (getPlayerMoney (source) >= 0) then takePlayerMoney(source, 0) if isElement(vehicle[source]) then destroyElement(vehicle[source]) end local x, y, z = getElementPosition(source) vehicle[source] = createVehicle(411 , x, y, z) warpPedIntoVehicle(source, vehicle[source]) end end ) vehicle = {} addEvent("car2", true) addEventHandler("car2", root, function() if (getPlayerMoney (source) >= 0) then takePlayerMoney(source, 0) if isElement(vehicle[source]) then destroyElement(vehicle[source]) end local x, y, z = getElementPosition(source) vehicle[source] = createVehicle(429, x, y, z) warpPedIntoVehicle(source, vehicle[source]) end end ) vehicle = {} addEvent("car3", true) addEventHandler("car3", root, function() if (getPlayerMoney (source) >= 0) then takePlayerMoney(source, 0) if isElement(vehicle[source]) then destroyElement(vehicle[source]) end local x, y, z = getElementPosition(source) vehicle[source] = createVehicle(489, x, y, z) warpPedIntoVehicle(source, vehicle[source]) end end ) وآسسف ع الأزعاج وأتمنى الأفادة BiG,BoSs~
  11. شكرا اخواني الأعزاء + جاري التجربه ...
  12. شباب انا عضو جديد بس من زمان العب .. ولا مره سويت مود حق ام تي ايه .. اما اليوم خطر ف بالي اسوي مود .. هذا المود اعتقد سسهل عندكم لكن صعب عندي ههه انا سويت المود وخليته يفتح بأف 10 واذا تدخل السيرفر اللوحة ما تطلع بوجهك وينكتب كلام بالشات لاكنـ للأسف ما صار مدري شصار فيه وما عرفت اليه الي يعرف رجاءا يساعدني وشكرا مقدما ^^ وهذا هو الكود اصحابي GUIEditor = { label = {}, memo = {} } Hours = guiCreateWindow(195, 79, 431, 411, "Hours Admin | By BiG,#BoSs~", false) guiWindowSetSizable(Hours, false) guiSetProperty(Hours, "CaptionColour", "FEFE0000") guiSetVisible (Hours,false) GUIEditor.label[1] = guiCreateLabel(3, 22, 423, 18, "Plzz IF You want an Admin Collect a Hours .. BiG,#BoSs~", false, Hours) guiSetFont(GUIEditor.label[1], "default-bold-small") guiLabelSetColor(GUIEditor.label[1], 249, 228, 4) guiLabelSetHorizontalAlign(GUIEditor.label[1], "center", false) GUIEditor.label[2] = guiCreateLabel(5, 388, 260, 13, "This Panel Created By | BiG,BoSs~", false, Hours) guiSetFont(GUIEditor.label[2], "default-bold-small") guiLabelSetColor(GUIEditor.label[2], 19, 70, 233) guiLabelSetHorizontalAlign(GUIEditor.label[2], "center", false) GUIEditor.label[3] = guiCreateLabel(264, 388, 157, 12, "Server Black Jocker ~", false, Hours) guiSetFont(GUIEditor.label[3], "default-bold-small") guiLabelSetColor(GUIEditor.label[3], 235, 124, 16) guiLabelSetHorizontalAlign(GUIEditor.label[3], "center", false) GUIEditor.memo[1] = guiCreateMemo(9, 57, 412, 327, "------------------------------------------------------------------------------------------------\n1- V.I.P #~ Hours #~ 15hours\n------------------------------------------------------------------------------------------------\n2- Moderator1 #~ Hours #~ 23hours\n------------------------------------------------------------------------------------------------\n3- Moderator2 #~ Hours #~ 30hours\n------------------------------------------------------------------------------------------------\n4- SupModeraTor1 #~ Hours #~ 40hours\n------------------------------------------------------------------------------------------------\n5- SupModerator2 #~ Hours #~ 50hours\n------------------------------------------------------------------------------------------------\n6- Admin1 #~ Hours #~ 65hours\n------------------------------------------------------------------------------------------------\n7- Admin.Plus #~ Hours #~ 80hours\n------------------------------------------------------------------------------------------------\n8- Admin.ToP #~ Hours #~ 95hours\n------------------------------------------------------------------------------------------------\n9- General.Admin #~ Hours #~ 140hours\n------------------------------------------------------------------------------------------------\n10- (VIP-System) You should win in the Competitions\n------------------------------------------------------------------------------------------------", false, Hours) guiMemoSetReadOnly(GUIEditor.memo[1], true) GUIEditor.label[4] = guiCreateLabel(3, 40, 214, 15, "The Rank .. IF You want To #~", false, Hours) guiSetFont(GUIEditor.label[4], "default-bold-small") guiLabelSetColor(GUIEditor.label[4], 95, 245, 5) guiLabelSetHorizontalAlign(GUIEditor.label[4], "center", false) GUIEditor.label[5] = guiCreateLabel(216, 40, 205, 15, "The Hours .. IF You want Rank #~", false, Hours) guiSetFont(GUIEditor.label[5], "default-bold-small") guiLabelSetColor(GUIEditor.label[5], 95, 245, 5) outputChatBox("Hours Admin Panel .. Press F10 .. #BiG,#BoSs~", 40, 255, 80) guiSetVisible (Hours, false) function OpenWin() if guiGetVisible ( Hours ) then guiSetVisible ( Hours, false ) showCursor(false) guiSetInputEnabled(false) else guiSetVisible ( Hours, true ) showCursor(true) guiSetInputEnabled(true) end end bindKey("F2", "down", OpenWin) وأكرر شكري اخوتي ^^
×
×
  • Create New...