05.07.2010, 21:00
Lets go back to basics...
If you want to just store a string (some text) then do this:
In simple terms the 32 part means it can store up to 32 characters.
When you want to view the contents of your variable in the server console do this:
Hope this gets you on track.
If you want to just store a string (some text) then do this:
pawn Код:
new field[32];
When you want to view the contents of your variable in the server console do this:
pawn Код:
printf("My field variable is: %s", field);