20.04.2018, 17:40
Quote:
Thanks for the help.
I want to do this: The first spawn of the player: the player appears at certain coordinates. The second and other spawns of the player: the player appears on coordinates from the database. The problem is that at the first appearance, the player appears in zero coordinates. |
PHP код:
New SpawnedPlayers = 0;
switch(SpawnedPlayers)
{
case 0:
{
// first spawn
}
case 1:
{
// second spawn
}
}
SpawnedPlayers++;