Jump to content

YourMind

Members
  • Posts

    347
  • Joined

  • Last visited

Everything posted by YourMind

  1. روح الاسل Default انزل تحت لغاية ماتوصل لصفحة صلاحيات الجروب function.addAccount ضيف الصلاحية وبس
  2. -- client addEventHandler ("onClientGUIClick",sendButton, function () if guiGetText (messageEdit) == "clr" then return triggerServerEvent ("Clear",localPlayer,getPlayerName(localPlayer)) end --sendMessage code end) addEvent ("CLEAR",true) addEventHandler ("CLEAR",root, function (name) guiGridListClear (GUIEditor.gridlist[1]) rw = guiGridListAddRow (GUIEditor.gridlist[1]) guiGridListSetItemText (GUIEditor.gridlist[1],rw,2,"**CLEARED BY "..name.."**",false,false) end) -- server addEvent ("Clear",true) addEventHandler ("Clear",root, function (name) for i,k in ipairs (getElementsByType("player")) do triggerClientEvent (k,"CLEAR",k,name) end end)
  3. -- client addEventHandler ("onClientGUIClick",sendButton, function () if guiGetText (messageEdit) == "clr" then return triggerServerEvent ("Clear",localPlayer,getPlayerName(localPlayer)) end --sendMessage code end) addEvent ("CLEAR",true) addEventHandler ("CLEAR",root, function (name) guiGridListClear (GUIEditor.gridlist[1]) rw = guiGridListAddRow (GUIEditor.gridlist[1]) guiGridListSetItemText (GUIEditor.gridlist[1],rw,2,"**CLEARED BY "..name.."**",false,false) end) -- server addEvent ("Clear",true) addEventHandler ("Clear",root, function (name) for i,k in ipairs (getElementsByType("player")) do triggerClientEvent (k,"CLEAR",k,name) end end)
  4. بجد ؟ هو دة شغلك كامل؟ عملت التصميم و فتح بالزر و خلاص ؟ D;
  5. بجد ؟ هو دة شغلك كامل؟ عملت التصميم و فتح بالزر و خلاص ؟ D;
  6. هات شغلك كامل و هاعدلك عليه بس حاول تتعلم من اللي هاعمله علي الاقل
  7. هات شغلك كامل و هاعدلك عليه بس حاول تتعلم من اللي هاعمله علي الاقل
  8. -- client addEventHandler ("onClientGUIClick",muteButton, function () local plr = guiGridListGetSelectedItem (playersGrid) if plr ~= -1 then local theName = guiGridListGetItemText (playersGrid,plr,1) local thePlr = getPlayerFromName (theName) triggerServerEvent ("MUTE",localPlayer,thePlr,theName) end end ) addEventHandler ("onClientGUIClick",sendButton, function () if getElementData (localPlayer,"MUTED") then return outputChatBox ("You are muted.",255,5,5) end -- send message code end ,false) -- server v = {} addEvent ("MUTE",true) addEventHandler ("MUTE",root, function (plr,name) if not isTimer (v[plr]) and not getElementData(plr,"MUTED") then setElementData (plr,"MUTED",true) v[plr] = setTimer (function () removeElementData (plr,"MUTED") outputChatBox ("UNMUTED SUCCESSFULY - SUPPORT SYSTEM",plr,5,255,5) end,unmuteTime,1) else return outputChatBox (""..name.." is already muted.",source,255,5,5) end end )
  9. -- client addEventHandler ("onClientGUIClick",muteButton, function () local plr = guiGridListGetSelectedItem (playersGrid) if plr ~= -1 then local theName = guiGridListGetItemText (playersGrid,plr,1) local thePlr = getPlayerFromName (theName) triggerServerEvent ("MUTE",localPlayer,thePlr,theName) end end ) addEventHandler ("onClientGUIClick",sendButton, function () if getElementData (localPlayer,"MUTED") then return outputChatBox ("You are muted.",255,5,5) end -- send message code end ,false) -- server v = {} addEvent ("MUTE",true) addEventHandler ("MUTE",root, function (plr,name) if not isTimer (v[plr]) and not getElementData(plr,"MUTED") then setElementData (plr,"MUTED",true) v[plr] = setTimer (function () removeElementData (plr,"MUTED") outputChatBox ("UNMUTED SUCCESSFULY - SUPPORT SYSTEM",plr,5,255,5) end,unmuteTime,1) else return outputChatBox (""..name.." is already muted.",source,255,5,5) end end )
  10. YourMind

    Code#

    -- client ranks = { -- Name.ID {'Army',2}, {'Army',29}, {'Army',287}, } local screenW, screenH = guiGetScreenSize() wnd = guiCreateWindow((screenW - 318) / 2, (screenH - 332) / 2, 318, 332, ":: Skins System :", false) guiWindowSetSizable(wnd, false) guiSetVisible (wnd,false) grid = guiCreateGridList(9, 23, 299, 236, false, wnd) guiSetFont(grid, "default-bold-small") guiGridListAddColumn(grid, "Name", 0.9) btn = guiCreateButton(19, 269, 276, 47, "Buy", false, wnd) guiSetFont(btn, "default-bold-small") bindKey ("x","down", function () guiSetVisible (wnd,not guiGetVisible(wnd)) showCursor (guiGetVisible(wnd)) end ) for _, v in ipairs (ranks) do local Row = guiGridListAddRow(grid) guiGridListSetItemText(grid,Row,1,v[1],false, false) guiGridListSetItemData (grid,Row,1,v[2]) end addEventHandler("onClientGUIClick",btn, function () local sel = guiGridListGetSelectedItem (grid) if sel ~= -1 then local skinID = guiGridListGetItemData (grid,sel,1) triggerServerEvent("SetSkin",localPlayer,skinID) guiSetVisible (wnd,false) guiSetInputEnabled(false) showCursor(false) end end ,false) -- server addEvent("SetSkin" ,true) addEventHandler("SetSkin" ,root, function (ID) PMoney = getPlayerMoney(source) if PMoney >= 2500 then setElementModel(source,tonumber(ID)) takePlayerMoney(source,2500) else return outputChatBox("You don't have 2500$.",source,255,5,5) end end )
  11. YourMind

    Code#

    -- client ranks = { -- Name.ID {'Army',2}, {'Army',29}, {'Army',287}, } local screenW, screenH = guiGetScreenSize() wnd = guiCreateWindow((screenW - 318) / 2, (screenH - 332) / 2, 318, 332, ":: Skins System :", false) guiWindowSetSizable(wnd, false) guiSetVisible (wnd,false) grid = guiCreateGridList(9, 23, 299, 236, false, wnd) guiSetFont(grid, "default-bold-small") guiGridListAddColumn(grid, "Name", 0.9) btn = guiCreateButton(19, 269, 276, 47, "Buy", false, wnd) guiSetFont(btn, "default-bold-small") bindKey ("x","down", function () guiSetVisible (wnd,not guiGetVisible(wnd)) showCursor (guiGetVisible(wnd)) end ) for _, v in ipairs (ranks) do local Row = guiGridListAddRow(grid) guiGridListSetItemText(grid,Row,1,v[1],false, false) guiGridListSetItemData (grid,Row,1,v[2]) end addEventHandler("onClientGUIClick",btn, function () local sel = guiGridListGetSelectedItem (grid) if sel ~= -1 then local skinID = guiGridListGetItemData (grid,sel,1) triggerServerEvent("SetSkin",localPlayer,skinID) guiSetVisible (wnd,false) guiSetInputEnabled(false) showCursor(false) end end ,false) -- server addEvent("SetSkin" ,true) addEventHandler("SetSkin" ,root, function (ID) PMoney = getPlayerMoney(source) if PMoney >= 2500 then setElementModel(source,tonumber(ID)) takePlayerMoney(source,2500) else return outputChatBox("You don't have 2500$.",source,255,5,5) end end )
  12. ايه الصعب في طلبك ؟ 'onClientGUIClick' triggerServerEvent -- server createObject
  13. ايه الصعب في طلبك ؟ 'onClientGUIClick' triggerServerEvent -- server createObject
  14. سرعة الكتابة هي السبب
  15. سرعة الكتابة هي السبب
  16. addEventHandler("onClientGUIClick", root, function ( ) if source == ForSerial then local serial = getPlayerSerial() outputChatBox (serial, 0, 255, 0, false ) end end ) او addEventHandler("onClientGUIClick", root, function ( ) if source == ForSerial then local serial = getPlayerSerial() if setClipboard (serial) then outputChatBox ("Done",5,255,5,true) end end )
  17. addEventHandler("onClientGUIClick", root, function ( ) if source == ForSerial then local serial = getPlayerSerial() outputChatBox (serial, 0, 255, 0, false ) end end ) او addEventHandler("onClientGUIClick", root, function ( ) if source == ForSerial then local serial = getPlayerSerial() if setClipboard (serial) then outputChatBox ("Done",5,255,5,true) end end )
  18. هو اللي مديهولك [L]e3bA طلاما ليه ماتطلبش منه المساعدة دي؟ الموضوع دة اتكرر كذا مرة -- client addEvent ("CLEAR",true) addEventHandler ("CLEAR",root, function (name) guiGridListClear (GUIEditor.gridlist[1]) rw = guiGridListAddRow (GUIEditor.gridlist[1]) guiGridListSetItemText (GUIEditor.gridlist[1],rw,1,"**CLEARED BY "..name.."**",false,false) end -- server addCommandHandler ("clr", function (name) for i,k in ipairs (getElementsByType("player")) do triggerClientEvent (k,"CLEAR",k,getPlayerName(name)) end end )
  19. هو اللي مديهولك [L]e3bA طلاما ليه ماتطلبش منه المساعدة دي؟ الموضوع دة اتكرر كذا مرة -- client addEvent ("CLEAR",true) addEventHandler ("CLEAR",root, function (name) guiGridListClear (GUIEditor.gridlist[1]) rw = guiGridListAddRow (GUIEditor.gridlist[1]) guiGridListSetItemText (GUIEditor.gridlist[1],rw,1,"**CLEARED BY "..name.."**",false,false) end -- server addCommandHandler ("clr", function (name) for i,k in ipairs (getElementsByType("player")) do triggerClientEvent (k,"CLEAR",k,getPlayerName(name)) end end )
  20. انت مش حاطت زر يمسح الشات اولاً و كمان غيرت حقوقه المزيفة لحقوقك[L]e3bA ثانياً انت تعتبر سارق المود من اصلاً Jaer[X]Pro سارق المود بسس مغيير شكله من [L]e3bA ثالثاً -.-
  21. انت مش حاطت زر يمسح الشات اولاً و كمان غيرت حقوقه المزيفة لحقوقك[L]e3bA ثانياً انت تعتبر سارق المود من اصلاً Jaer[X]Pro سارق المود بسس مغيير شكله من [L]e3bA ثالثاً -.-
  22. لأ معرفه شوف كودي كويس
  23. لأ معرفه شوف كودي كويس
  24. غير اسم الزر و الجريد ليست باللي عندك و هايشتغل
  25. غير اسم الزر و الجريد ليست باللي عندك و هايشتغل
×
×
  • Create New...