Help.
#2

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:
pawn Код:
public OnGameModeInit()
UsePlayerPedAnims();
{
    SetGameModeText("ThuG V1");
Change it so that it looks like this:
pawn Код:
public OnGameModeInit()
{
    UsePlayerPedAnims();
    SetGameModeText("ThuG V1");
It is now correctly within the { } brackets of the OnGameModeInit callback! Recompile and see if it is any better for you. Good luck!
Reply


Messages In This Thread
Help. - by MrSolid95X - 17.06.2011, 02:59
Re: Help. - by Benjo - 17.06.2011, 04:24
Re: Help. - by MrSolid95X - 17.06.2011, 04:45
Re: Help. - by MrSolid95X - 17.06.2011, 14:40
Re : Help. - by Naruto_Emilio - 17.06.2011, 14:56
Re: Help. - by MrSolid95X - 17.06.2011, 16:50
Re: Help. - by MrSolid95X - 17.06.2011, 21:46
Re: Help. - by sleepysnowflake - 17.06.2011, 21:50
Re: Help. - by MrSolid95X - 17.06.2011, 21:55
Re: Help. - by sleepysnowflake - 17.06.2011, 22:07

Forum Jump:


Users browsing this thread: 3 Guest(s)