What am I doing wrong?
#7

Merge your functions, you didn't read my post correctly.

Your code is something like this.

pawn Код:
public OnGameModeInit()
{
  printf("Game Mode Init");
  return 1;
}

public OnGameModeInit()
{
  AddPlayerClass(176, 235, 2546, 2354, 10, 1, 0, 0, 0, 0);
  return 1;
}
There you've got OnGameModeInit TWICE in your GM. Merge them:

pawn Код:
public OnGameModeInit()
{
  print("Game Mode Init");
  AddPlayerClass(176, 235, 2546, 2354, 10, 1, 0, 0, 0, 0);
  return 1;
}
Reply


Messages In This Thread
Please help! - by Alphos - 05.09.2010, 13:46
Re: What am I doing wrong? - by Alphos - 05.09.2010, 14:15
Re: What am I doing wrong? - by Hiddos - 05.09.2010, 14:21
Re: What am I doing wrong? - by Alphos - 05.09.2010, 14:32
Re: What am I doing wrong? - by DevilG - 05.09.2010, 14:41
Re: What am I doing wrong? - by Alphos - 05.09.2010, 14:46
Re: What am I doing wrong? - by Hiddos - 05.09.2010, 14:52
Re: What am I doing wrong? - by Alphos - 05.09.2010, 14:59
Re: What am I doing wrong? - by Alphos - 05.09.2010, 18:10
Re: What am I doing wrong? - by Burridge - 05.09.2010, 18:12

Forum Jump:


Users browsing this thread: 4 Guest(s)