Game Development Community

Player Selection and Teams

by Stephen · in Torque Game Engine · 01/13/2006 (3:24 pm) · 1 replies

I need some help with my project on player selection and teams. I have added the Teams Implementation resource to my project but with the player selection, I have looked at the Player Selection resource but I think its for the player datablock. In my project you play as vehicles like in the starter.racing. I would like to know how to set it up where when you start the game you pick your team then you pick which vehicle you want.

Thanks
-Stephen

#1
02/15/2006 (10:11 am)
Use it the same way just on the game.cs in the createplayer function
change it up.

New Player(){
datablock = %this.armor
client = %this
}

have it

new wheeledVehicle() {
datablock = %this.(what ever your car variable is)
client = %this
}

As far as i know on thats the only difference between the start fps and the starter racing