25.03.2009, 16:53
You probably know Redgie's RP's short tutorial ingame with GameText. The player gets to see a spot and you will get a small tutorial in GameText-style.
I want to do a bit similar stuff, I want to freeze the player for 15 seconds and then put a GameText on their screen like this:
~r~Do not deathmatch, revenge kill, bug abuse or hack.~n~
~r~You are also not allowed to metagame or powergame.~n~
~r~Have fun!
This is the player spawn part:
Help me!
I want to do a bit similar stuff, I want to freeze the player for 15 seconds and then put a GameText on their screen like this:
~r~Do not deathmatch, revenge kill, bug abuse or hack.~n~
~r~You are also not allowed to metagame or powergame.~n~
~r~Have fun!
This is the player spawn part:
Код:
public OnPlayerSpawn(playerid)
{
if(gPlayerLogged[playerid])
{
SetPlayerSpawn(playerid);
}
return 1;
}


, mayby explaning things and how its done would be..