Need help?
Create a topic in the appropriate section
Don't write everything in the chat!Take a look at the marketplace
There you can buy
everything related to game serversDon't want a ban?
Please read our rules
Don't disturb the order!Sell or buy?
Use services of the guarantor
We will make your deal safe
- 0
-
Our picks
Подскажите товарищи, как разделить всех игроков на две "фракции", при входе на сервер игроку выдаётся один из двух химсветов (красный или белый рандомно), если выдало красный, то игрока спавнит возле одного трейда, если белый, то возле другого. Хочу разделить по этому принципу, надо делить игроков на две фракции, что бы участники одной фракции не могли зайти в трейд зону другой. И как сделать что бы игрок не мог выкинуть этот химсвет.
rand = Math.RandomFloatInclusive( 0.0, 1.0 ); if ( rand < 0.5 ) {itemEnt = player.GetInventory().CreateInInventory( "Apple" ); itemEnt = itemClothing.GetInventory().CreateInInventory( "Chemlight_White" ); SetRandomHealth( itemEnt ); player.SetPosition("8337 292 5992"); } else {itemEnt = player.GetInventory().CreateInInventory( "Pear" ); itemEnt = itemClothing.GetInventory().CreateInInventory( "Chemlight_Red" ); SetRandomHealth( itemEnt ); player.SetPosition("3727 401 6012"); } SetRandomHealth( itemEnt );
Share this post
Link to post
Share on other sites