17.06.2011, 04:24
Hello there! I've had a quick look, and noticed that you UsePlayerPedAnims(); line has been put in the wrong place. You were very close though! At the moment, the start of your OnGameModeInit callback looks like this:
Change it so that it looks like this:
It is now correctly within the { } brackets of the OnGameModeInit callback! Recompile and see if it is any better for you. Good luck!
pawn Код:
public OnGameModeInit()
UsePlayerPedAnims();
{
SetGameModeText("ThuG V1");
pawn Код:
public OnGameModeInit()
{
UsePlayerPedAnims();
SetGameModeText("ThuG V1");