print(f) bug?
#1

Hey,
I tried using print(f) in my NPC scripts but it never printed anything in console... Those scripts works fine but print function doesn't... :S

This is my script:
pawn Код:
public OnPlayerText(playerid, text[])
{
  if (strfind(text, "stupid bot") != -1)
  {
    new string[80], name[MAX_PLAYER_NAME];
    GetPlayerName(playerid, name, sizeof(name));
        print("testing print func");
    format(string, sizeof(string), "Hey %s! You are so mean, you make me so sad!", name);
    SendChat(string);
  }

}
SendChat works, but print - doesn't...
Reply


Messages In This Thread
print(f) bug? - by SiJ - 24.12.2009, 08:34
Re: print(f) bug? - by d0 - 24.12.2009, 11:45
Re: print(f) bug? - by dugi - 24.12.2009, 11:51

Forum Jump:


Users browsing this thread: 1 Guest(s)