i,xAhmed Posted April 14, 2018 Share Posted April 14, 2018 سلام عليكم , فيه مود م ينزل تحت من السهم عندي فاكشنات كثيرة لاكن ماقدر انزل تحت اختار منها لها حد معين لاهنتم ابي تصليح له tBizManagement = guiCreateTab ( "Configurations" , shopTabPanel ) local l1 = guiCreateLabel(11,19,716,56,"Faction Drop NPC Configurations",false,tBizManagement) guiLabelSetHorizontalAlign(l1,"center",false) guiSetFont(l1, BizNoteFont) local line = 40 local col = 200 local xOffset = 30 local lTeam = guiCreateLabel(xOffset,line*3,716,56,"Grant accesses to Faction:",false,tBizManagement) guiSetFont(lTeam, "default-bold-small") local cFaction = guiCreateComboBox ( xOffset+col,line*3,col*2,56, "None", false, tBizManagement ) local counter = 0 local comboIndex1 = {} comboIndex1[0] = {"None", 0} guiComboBoxAddItem(cFaction, "None") local factions = getElementsByType("team") for i = 1, #factions do local factionName = getTeamName(factions[i]) if factionName ~= "Citizen" then counter = counter + 1 guiComboBoxAddItem(cFaction, factionName) comboIndex1[counter] = {getTeamName(factions[i]), getElementData(factions[i], "id")} outputDebugString(counter.." - "..tostring(getTeamName(factions[i])).." - ".. tostring(getElementData(factions[i], "id"))) end end if counter > 2 then counter = counter - 1 end exports.global:guiComboBoxAdjustHeight(cFaction, counter) guiComboBoxSetSelected ( cFaction, getComboIndexFromFactionID(comboIndex1,getElementData(ped, "faction_belong")) ) Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now