التيبل عشان تسوي قاعدة بيانات باسماء الحسابات الي تبيها
مثال
Acc = {
["Kareem"] = true,
}
addEventHandler ( 'onPlayerLogin', getRootElement ( ),
function ( _, theCurrentAccount )
local AccText = getAccountName(theCurrentAccount)
if ( Acc[AccText] ) then
executeCommandHandler ( "هنا الكلمة")
else
end
end
)