CLEO Help from 0 to 99999

CLEO related
Status
Not open for further replies.

Edd004

Active member
Joined
Mar 10, 2013
Messages
155
Reaction score
0
i want to make it read the number from 0 to 99999

:A
wait 1
for 0@ = 0 to 99999 step 1
0AD3: 6@s = format "%d" 0@
0AF4: 0@v = read_string_from_ini_file "cleo[E4]Config[E4]Data.ini" section "ACTIVATION" key 6@s
if
cheat 0@v
jf @A
jump @C

but it just read the number 0 only :hm: :hm::hm: not the number from 0 to 999999, can someone help me about this?
**sorry if my english is bad :xD: :xD::xD: **
 

Edd004

Active member
Joined
Mar 10, 2013
Messages
155
Reaction score
0
wtf u want do?

i wanna use this, to make 0@ as a number from 0 to 99999

Code:
for 0@ = 0 to 99999 step 1

but when in game, it just use the number 0 only, not 0,1,2,3,4,5,6................99999
 

Z0DY

Well-known member
Joined
Feb 20, 2013
Messages
225
Reaction score
0
[quote author="Z0DY"]wtf u want do?

i wanna use this, to make 0@ as a number from 0 to 99999

Code:
for 0@ = 0 to 99999 step 1

but when in game, it just use the number 0 only, not 0,1,2,3,4,5,6................99999[/quote]

Code:
{$CLEO .cs}
thread 'For'

:start
wait 0
if
Player.Defined($plaer_char)
then
    for 0@ = 0 to 99999
        0AF9: samp say_msg "Hello id: %d" 0@
    end
end
jump @start
 
Status
Not open for further replies.
Top