11.02.2009, 18:01
than post next time a complete script with headers :S or say where it belongs too (how you did now)
Now it will print something when the value got raised and when it got lowered
and you dont need to write each word with a big starting letter
pawn Код:
public Timer()
{
static OldMoney = 0x7F800000;
new NewMoney = dini_Int("status.ini", "BankMoney");
if(NewMoney > OldMoney)
{
printf("The Bank Has Currently $%s To Give Away To Poor Players.", NewMoney - OldMoney);
}
else if(OldMoney > NewMoney)
{
printf("The Bank Has Currently Lost $%s.", OldMoney - NewMoney);
}
OldMoney = NewMoney;
}
and you dont need to write each word with a big starting letter