Dialog List - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Dialog List (
/showthread.php?tid=658798)
Dialog List -
CaptainBoi - 12.09.2018
hello how i can make a color dialog list
i mean i want to make numbers in a dialog list
how i can make them directly from 1-100
without typing 001\n002\n003\n004\n005\n006\n007 in dialog
i want to make this automatically as i type cmd to show dialog
and i get all numbers from 1-100
Re: Dialog List -
v1k1nG - 12.09.2018
PHP код:
for(new i = 0; i < 100; i++){
// create a string
// format the string
// show the dialog
}
Re: Dialog List -
Calisthenics - 12.09.2018
Since 1 and 100 are included, it'd be:
pawn Код:
for (new i = 1; i <= 100; i++)
about adding zeros before the number if the digit is not 3, you can use %02d or %02i in format
Re: Dialog List -
CaptainBoi - 12.09.2018
hmm well i already made it
btw thanks for quick response
+rep
Re: Dialog List -
v1k1nG - 12.09.2018
Means 100 in both cases, he can add +1 to i var when formatting if he wants.
Re: Dialog List -
CaptainBoi - 12.09.2018
man i did it already and reped you for quick response and
thanks again