Jump to content

مساعده


Recommended Posts

السلام عليكم ورحمة الله وبركاته

مساكم الله بالخير

ياخوان انا سويت نافذه ارسال الفلوس الي تخبرونها

كل شي ظبط الا شي واحد

هو الاعبين مايجون باللسته مدري ليش

الي يعرف يصلح المود يصلحه

وبيض الله وجه الي يصلحه ووجههكم

GUIEditor_Window = {} 
GUIEditor_Edit = {} 
GUIEditor_Image = {} 
  
GUIEditor_Window[1] = guiCreateWindow(258,167,356,241,"",false) 
guiSetAlpha(GUIEditor_Window[1],1) 
playerList = guiCreateGridList(9,24,130,203,false,GUIEditor_Window[1]) 
guiGridListSetSelectionMode(playerList,2) 
local cl = guiGridListAddColumn(playerList, "Players List ...", 0.2) 
guiSetAlpha(playerList,1) 
nameEdit = guiCreateEdit(170,83,126,32,"",false,GUIEditor_Window[1]) 
guiSetAlpha(nameEdit,1) 
GUIEditor_Edit[1] = guiCreateEdit(54,182,5,5,"",false,nameEdit) 
guiSetAlpha(GUIEditor_Edit[1],1) 
amountEdit = guiCreateEdit(171,127,126,32,"",false,GUIEditor_Window[1]) 
guiSetAlpha(amountEdit,1) 
sendBTN = guiCreateButton(162,199,76,30,"Send",false,GUIEditor_Window[1]) 
guiSetAlpha(sendBTN,1) 
  
  
  
  
addEventHandler("onClientGUIClick",getRootElement(), 
function() 
       if ( source == sendBTN ) then 
         playerNick = guiGetText(nameEdit) 
         amount = guiGetText(amountEdit) 
         triggerServerEvent("onSendMoney", getLocalPlayer(), playerNick, amount) 
       end 
end) 
  

Link to comment
GUIEditor_Window = {} 
GUIEditor_Edit = {} 
GUIEditor_Image = {} 
  
GUIEditor_Window[1] = guiCreateWindow(258,167,356,241,"",false) 
guiSetAlpha(GUIEditor_Window[1],1) 
nameEdit = guiCreateEdit(170,83,126,32,"",false,GUIEditor_Window[1]) 
guiSetAlpha(nameEdit,1) 
GUIEditor_Edit[1] = guiCreateEdit(54,182,5,5,"",false,nameEdit) 
guiSetAlpha(GUIEditor_Edit[1],1) 
amountEdit = guiCreateEdit(171,127,126,32,"",false,GUIEditor_Window[1]) 
guiSetAlpha(amountEdit,1) 
sendBTN = guiCreateButton(162,199,76,30,"Send",false,GUIEditor_Window[1]) 
guiSetAlpha(sendBTN,1) 
  
  
  
  
  
setTimer( 
    function() 
        playerList = guiCreateGridList(9,24,130,203, false, GUIEditor_Window[1]) 
            guiGridListSetSelectionMode(playerList, 2) 
            local cl = guiGridListAddColumn(playerList, "Players List ...", 0.85) 
                if ( cl and guiGetVisible(GUIEditor_Window[1]) == true ) then 
                    for _,name in ipairs(getElementsByType("player")) do 
                     local rw = guiGridListAddRow(playerList) 
                     guiGridListSetItemText(playerList, rw, cl, getPlayerName(name), false, false) 
                    end 
        addEventHandler("onClientGUIClick", playerList, onClickPlayerName) 
                end 
    end 
,4000,0) 
  
function onClickPlayerName () 
  local name = guiGridListGetItemText(playerList, guiGridListGetSelectedItem(playerList), 1) 
  guiSetText(nameEdit, name) 
end 
  
addEventHandler("onClientGUIClick",getRootElement(), 
function() 
       if ( source == sendBTN ) then 
         playerNick = guiGetText(nameEdit) 
         amount = guiGetText(amountEdit) 
         triggerServerEvent("onSendMoney", getLocalPlayer(), playerNick, amount) 
       end 
end)  
  
  
  

Link to comment
اي بالله على سيرفر الجهاز

جرب سيرفر ثآني يكون آحسن :wink:

الكود كلينت يعني السيرفر ماله دخل

المشكلة ذي من كودك بسبب التايمر

كودك كله خطأ

grid list سلامات كل 4 ثواني تسوي قائمة

Link to comment
اي بالله على سيرفر الجهاز

جرب سيرفر ثآني يكون آحسن :wink:

الكود كلينت يعني السيرفر ماله دخل

المشكلة ذي من كودك بسبب التايمر

كودك كله خطأ

grid list سلامات كل 4 ثواني تسوي قائمة

اذا حق فهد غلط

عطنا الكود الصحيح

Link to comment
انت تقول غلط الكود

صححه لنا

\وعليكم السلام ورحمة الله وبركاته

يآبعدي ترا الكود مطروح مليار مره على كلام تآبل

يعني ماله دإعي تسوي كود على المليار كود

وتقول صلحوه لي ، إبحث قبل لاتطرح سؤالك

همسه : البحث يمين فوق بالمربع

كودك

..

  
GUIEditor_Window = {} 
  
GUIEditor_Edit = {} 
  
GUIEditor_Image = {} 
  
  
  
GUIEditor_Window[1] = guiCreateWindow(258,167,356,241,"",false) 
  
guiSetAlpha(GUIEditor_Window[1],1) 
  
nameEdit = guiCreateEdit(170,83,126,32,"",false,GUIEditor_Window[1]) 
  
guiSetAlpha(nameEdit,1) 
  
GUIEditor_Edit[1] = guiCreateEdit(54,182,5,5,"",false,nameEdit) 
  
guiSetAlpha(GUIEditor_Edit[1],1) 
  
amountEdit = guiCreateEdit(171,127,126,32,"",false,GUIEditor_Window[1]) 
  
guiSetAlpha(amountEdit,1) 
  
sendBTN = guiCreateButton(162,199,76,30,"Send",false,GUIEditor_Window[1]) 
  
guiSetAlpha(sendBTN,1) 
  
  
  
  
  
  
  
  
  
  
  
setTimer( 
  
    function() 
  
        playerList = guiCreateGridList(9,24,130,203, false, GUIEditor_Window[1]) 
  
            guiGridListSetSelectionMode(playerList, 2) 
  
            local cl = guiGridListAddColumn(playerList, "Players List ...", 0.85) 
  
                if ( cl and guiGetVisible(GUIEditor_Window[1]) == true ) then 
  
                    for _,name in ipairs(getElementsByType("player")) do 
  
                     local rw = guiGridListAddRow(playerList) 
  
                     guiGridListSetItemText(playerList, rw, cl, getPlayerName(name), false, false) 
  
                    end 
  
        addEventHandler("onClientGUIClick", playerList, onClickPlayerName) 
  
                end 
  
    end 
  
,4000,1) 
  
  
  
function onClickPlayerName () 
  
  local name = guiGridListGetItemText(playerList, guiGridListGetSelectedItem(playerList), 1) 
  
  guiSetText(nameEdit, name) 
  
end 
  
  
  
addEventHandler("onClientGUIClick",getRootElement(), 
  
function() 
  
       if ( source == sendBTN ) then 
  
         playerNick = guiGetText(nameEdit) 
  
         amount = guiGetText(amountEdit) 
  
         triggerServerEvent("onSendMoney", getLocalPlayer(), playerNick, amount) 
  
       end 
  
end)  
  
  
  
  
  
  
  
function refresh ( ) 
  
    guiGridListClear ( playerList) 
  
    for id, player in ipairs ( getElementsByType ( "player" ) ) do 
  
        local row = guiGridListAddRow ( playerList ) 
  
        guiGridListSetItemText ( playerList, row, 1, getPlayerName ( player ), false, false ) 
  
    end 
  
end 
  
addEventHandler ( "onClientResourceStart", resourceRoot, refresh ) 
addEventHandler ( "onClientPlayerJoin", root, refresh ) 
addEventHandler ( "onClientPlayerQuit", root, refresh ) 
addEventHandler ( "onClientPlayerChangeNick", root, refresh ) 
  
  
  

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...