Jump to content

X{مساعده}X مشكله في لوحه جلب الاعبين


Recommended Posts

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

انا ابي اسوي لوحه فيها جميع اسماء حسابات الاعبين مثلا انا دخلت بحساب طلعت ودخلت بحساب اخر اشوف اسم حسابي القديم والجديد في اللوحه

انا سويت حساب وظهر | المشكله هي لما تسوي حساب جديد بيظهر ويكنسل علي الحساب القديم

محاولتي 
 

-- Server Side -- 

Table = {}

function table.find(t, v)
	for k, a in ipairs(t) do
		if a == v then
			return k
		end
	end
	return false
end

addEventHandler("onPlayerLogin",root,
function(_,Account)
if not(isGuestAccount(Account)) then
if (table.find(Table,Account) == false) then 
table.insert(Table,Account)
for _,n in ipairs(Table) do
Name = getAccountName(n)
triggerClientEvent("Take",root,Account,Name,n)
end
end;end
end)
-- Client Side-- 	

window = guiCreateGridList(201, 126, 575, 355, false)
column = guiGridListAddColumn(window, "Account", 0.9)
row = guiGridListAddRow(window)
guiSetVisible(window,false)

bindKey("F2","down",
function()
Visible = guiGetVisible(window)
guiSetVisible(window,not Visible)
showCursor(not Visible)
end)

addEvent("Take",true)
addEventHandler("Take",root,
function(Account,Name,n)
guiGridListSetItemText(window,row,column,tostring(Name),false,false)
end
)

 

Link to comment

يعني تبي تجيب حسابات اللاعب كلها ؟

اذا هيك تقدر تستخدم الوظيفه دي سويتها لك 

function getPlayerAccounts(player)
	local serial = getPlayerSerial(player)
	local emptyTable = {}
	for _,account in ipairs(getAccounts()) do
		if serial == getAccountSerial(account) then
			table.insert(emptyTable, account)
		end
	end
	return emptyTable
end
		

 

Edited by #َxLysandeR
  • Thanks 1
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...