27.06.2018, 15:13
Whats funny?
anwyays,
just use this : https://sampwiki.blast.hk/wiki/Strcat
and add the new info inside it. For eg:
This will out put:
inside your textdraw box. So everytime a new player places a bet, just strcat the old string with new player's bet and its amount.
anwyays,
just use this : https://sampwiki.blast.hk/wiki/Strcat
and add the new info inside it. For eg:
PHP код:
new string[68];
strcat(string, "Hello");
strcat(string, "\nWorld");
TextDrawSetString(TextDrawID, string);
Код:
Hello World