11.03.2014, 01:58
Greetings everyone,
I am currently writing a gamemode for own use,
Tough i have some minor inqueries, (minor questions i need an answer on)
For example take this
Whats better to use?
AddPlayerClass(0, x, y, z, o, 0, 0, 0, 0, 0, 0);
or
AddPlayerClassEx(0, x, y, z, o, 0, 0, 0, 0, 0, 0);
Since im going to create a server with mutliple teams,
also, is it possible to assing a sub team to a player for example
I have the team Robber a player is in it and i want him to be Rapist as sub team,
So i can filter commands to the right team, wich one would u preffer?
Regards Yvoms
I am currently writing a gamemode for own use,
Tough i have some minor inqueries, (minor questions i need an answer on)
For example take this
Код:
#define PLAYER 0 #define ROBBER 1 AddPlayerClassEx(0, x, y, z, o, 0, 0, 0, 0, 0, 0);//Will this be the player team he spawns in? AddPlayerClassEx(1, x, y, z, o, 0, 0, 0, 0, 0, 0);//Will this be the robbing team he spawns in?
AddPlayerClass(0, x, y, z, o, 0, 0, 0, 0, 0, 0);
or
AddPlayerClassEx(0, x, y, z, o, 0, 0, 0, 0, 0, 0);
Since im going to create a server with mutliple teams,
also, is it possible to assing a sub team to a player for example
I have the team Robber a player is in it and i want him to be Rapist as sub team,
So i can filter commands to the right team, wich one would u preffer?
Regards Yvoms