10.08.2018, 17:17
Hello, i have a textdraw which shows "Available Jobs" text. Since i have 8 jobs, i don't wanna create 8 textdraws. It's possible, using string, show this 8 jobs in a single textdraw?
Example:
Available jobs:
Robber
Rapist
Medic
Etc. Etc.
Currently i have this (created now) which is supposed to show jobs names:
How to pass it in a string to show it in the textdraw?
Thanks
Example:
Available jobs:
Robber
Rapist
Medic
Etc. Etc.
Currently i have this (created now) which is supposed to show jobs names:
pawn Код:
new stock JobNames[][] =
{
"Robber", "Rapist", "Medic"
};
Thanks