Jump to content

Clan Team and Team Spawn and weapons


Kylios

Recommended Posts

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 :(

Link to comment
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 xD

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...