Jump to content

^iiEcoo'x_)

Members
  • Posts

    2,936
  • Joined

  • Last visited

  • Days Won

    44

Everything posted by ^iiEcoo'x_)

  1. https://wiki.multitheftauto.com/wiki/RemoveAccountData My Function :- removeAccountData removeAccountData
  2. local xx, yy = guiGetScreenSize() local rx, ry = (xx-800)/2, (yy-600)/2 function lo7h() dxDrawRectangle(rx*482, ry*206, rx*318, ry*233, tocolor(238, 15, 31, 255), false) dxDrawRectangle(rx*558, ry*296, rx*150, ry*51, tocolor(36, 218, 216, 255), false) dxDrawText("hide/show chat", rx*577, ry*314, rx*688, ry*337, tocolor(255, 255, 255, 255), 1.00, "default", "left", "top", false, false, false, false, false) end جرب
  3. استخدم else
  4. WebBrowserGUI:CloseButton_Click(button, state) -- your button -- state , false or true ! هذي مثل ال guiSetVisible بس مسوي يوزفل فنكشن لموده يعني سوي حدث عند الضغط ع زر تحط اليوزفل فنكشن وتغير button للزر حقك و state القيمة false -- يغلقها true -- يفتحها حسب علمي !
  5. شف ذا + انت الي مسويه ؟ function WebBrowserGUI:CloseButton_Click(button, state) if button == "left" and state == "up" then self.m_Window:destroy() showCursor(false) --GuiElement.setInputMode("no_binds_when_editing") WebBrowserGUI.instance = nil end end
  6. بسيطة ، حصل خير
  7. خلك محترم ولا تزود مشاركات
  8. تصحيح * يجيب نص الي انت حددته
  9. ^iiEcoo'x_)

    طلب

    العفو في الخدمة
  10. يبيه مجانا من الآخر + انت م تعرف تسوي تختار لاعب وتظهرله لوحة عشان مسوي مود مراقبة شات و لوكال شات
  11. ^iiEcoo'x_)

    طلب

    onClientGUIClick
  12. XXXXXXXXXXX الكود م اله معنى اساسا
  13. function players () guiGridListClear(grid) for i,v in ipairs(getElementsByType("player")) do if ( getElementDimension( v ) == 30 ) then local row = guiGridListAddRow(grid) guiGridListSetItemText(grid,row,1,getPlayerName(v),false,false) end end end وضيف بكود فتح اللوحة players ()
  14. ما يحتاج getAccountFromName !
  15. الأرقيومنت الأول هو المسج , يعني اذا تبي تحدد مسج , في هذهـ الحالة احنا م احتجنا انه نحدد المسج وتجاوزنا البارمتر شف هنا string message, int messageType تجاوزنا البرامتر الأول لأنا م احتجناهـ برتقآلي = سيرفر آحمر = كلاينت آزرق = الأثنين كلاينت وسيرفر اليوزفل فنكشن أخضر !
  16. local ColS = createColRectangle ( ..... ) addEventHandler ( "onColShapeHit", root, function ( thePlayer ) if source == ColS then if getElementType ( thePlayer ) == "player" then setElementData(source,"noCanUseKey",true) outputChatBox ( "Your entered the zone!", thePlayer, 255, 255, 109 ) end end end ) addEventHandler ( "onColShapeLeave", root, function ( thePlayer ) if source == ColS then if getElementType ( thePlayer ) == "player" then setElementData(source,"noCanUseKey",false) outputChatBox ( "Your leaved the zone!", thePlayer, 255, 255, 109 ) end end end ) local buttons = { ['F1'] = true, ['F3'] = true, } addEventHandler( 'onClientKey', root, function (button , press) if getElementData ( localPlayer , "noCanUseKey" ) == true then if press and getElementDimension(localPlayer) == 30 then if buttons[button] then outputChatBox("غير مصرح لك بفتح اللوحة الان ", 255, 0, 0) cancelEvent() end end end end) #Edit: سطر 9 خليه كذا if press then
  17. خخخخ فكرهـ حلوة for i,v in ipairs(getElementsByType("player")) do if ( getElementDimension( v ) == 30 ) then local row = guiGridListAddRow(grid) guiGridListSetItemText(grid,row,1,getPlayerName(v),false,false) end end
  18. كل الي عليكـ تسويه , اول م يخش الاعب الديربي تحط له داتا تسميها setElementData (source,"getPlayerInDerby",true) طبعا مو سورس حسب تعريف الاعب عندكـ ! وبس يخرج تحط قيمة الداتا false وتسوي قريد ليست عشان تجيب الي معه داتا حق الديربي ! for i,v in ipairs(getElementsByType("player")) do if ( getElementData ( v,'getPlayerInDerby' ) == true ) then local row = guiGridListAddRow(grid) guiGridListSetItemText(grid,row,1,getPlayerName(v),false,false) end end
  19. addEventHandler("onClientGUIClick",root,function () sel = guiGridListGetSelectedItem(GUIEditor.gridlist[1]) PlayerName = guiGridListGetItemText(GUIEditor.gridlist[1],sel,1) if source == GUIEditor.gridlist[1] then if Sel ~= -1 then p = getPlayerFromName(PlayerName) guiSetText(name ,"Name : "..getPlayerName(p)) guiSetText(money,"Money : "..getPlayerMoney(p)) guiSetText(ping,"Ping : "..getPlayerPing(p)) triggerServerEvent("INFO",localPlayer,p) end end end) addEvent("GetHim",true) addEventHandler("GetHim",root,function (AAcc,SSerial,PPlayerAcls,iip) guiSetText(acc,"Account : "..AAcc) guiSetText(rank,"Rank : "..PPlayerAcls) guiSetText(ip,"IP : "..iip) guiSetText(serial,"serial: "..SSerial) end ) function getPlayerAcls(thePlayer) local acls = {} local account = getPlayerAccount(thePlayer) if (account) and not (isGuestAccount(account)) then local accountName = getAccountName(account) for i,group in ipairs(aclGroupList()) do if (isObjectInACLGroup( "user." ..accountName, group)) then local groupName = aclGroupGetName(group) table.insert(acls, groupName) end end end return acls end addEvent("INFO",true) addEventHandler("INFO", root, function (PlayerName) if ( PlayerName ) then AAcc = getAccountName(getPlayerAccount(PlayerName) ) acl = getPlayerAcls(PlayerName) SSerial = getPlayerSerial(PlayerName) PPlayerAcls = tostring( table.concat(acl, ", ") ) iip = getPlayerIP(PlayerName) triggerClientEvent(PlayerName,"GetHim",PlayerName,AAcc,SSerial,PPlayerAcls,iip) end end ) تفضل , مسوي مود مثله من زمان , مجربه وشغال 100% انا مسويه باليبل , مو صعب تحوله ميمو
  20. جبتلك الحل في اوبجكت ع شكل ماركر استعلمه
  21. https://notepad-plus-plus.org/download/
  22. يمديك بدال م تضغط زر بس تحط بدال button اسم قريد ليست حقك if ( source == button ) then
  23. طيب م فرق اشي ، سوي نفس الشي !
  24. سوي اي دي على كل بيت ، ولما تفتح اللوحة حق البيت يجيك اي دي البيت وقريد ليست فيها الاي دي ، الخ وسوي الي تبيه يعني سآلفة طويلة شوي ورد خآص
×
×
  • Create New...