Kylios Posted February 20, 2012 Posted February 20, 2012 Is there a way to put Clan Teams in a team selection? Because I'm just a newbie scripter can't do adv. stuff How to Create Coordinates for Team Spawn? is there an easy way? How to make team spawn weapons? Sorry if I cause many problems... I just wanna know how the script is done by this way. And inorder to help my server
drk Posted February 21, 2012 Posted February 21, 2012 local teams = { ['Team name'] = 'Coordinates of spawn like posX,posY,posZ' } gui = guiCreateGridList(posX,posY,Width,Height,relative,parent) column = guiGridListAddColumn(gui,'Teams',1.0) if column then for name, coord in pairs(teams) do local row = guiGridListAddRow(gui) guiGridListSetItemText(gui,row,column,tostring(name),false,false) guiGridListSetItemData(gui,row,column,tostring(coord)) end end See around the forums about team weapons. I don't remember much now.. Out of Computer World
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