29.11.2012, 00:54
Instead of:
Use:
pawn Код:
printf("Weight: %d, Fishes: %d, Rod: %d, Baits: %d", weight, fishes, fishingtool, worms);
pawn Код:
new string[128];
format(string, 128, "Weight: %d, Fishes: %d, Rod: %d, Baits: %d", weight, fishes, fishingtool, worms);
print(string);