CLEO Help NUMBER@

CLEO related
Status
Not open for further replies.

ejexter

Well-known member
Joined
Feb 21, 2014
Messages
211
Reaction score
0
I don't know what is means 1@ 2@ 3@ ...
Some help? :yesyes:
 

ThermaL

Expert
Joined
Oct 23, 2013
Messages
1,593
Reaction score
3
Numbers, words, actors, cars, etc can be stored in @, so @ will mean that number/word/actor/car.
Let's say that my health is 90;
if I do
1@ = Actor.Health($PLAYER_ACTOR);
then 1@ will mean 90.
You can do anything with that number;

Increase it
000A: 1@ += 1

Print it on the screen
printf "%d" 1337

And more other things.
 

ejexter

Well-known member
Joined
Feb 21, 2014
Messages
211
Reaction score
0
TH3RM4L link said:
Numbers, words, actors, cars, etc can be stored in @, so @ will mean that number/word/actor/car.
Let's say that my health is 90;
if I do
1@ = Actor.Health($PLAYER_ACTOR);
then 1@ will mean 90.
You can do anything with that number;

Increase it
000A: 1@ += 1

Print it on the screen
printf "%d" 1337

And more other things.
Thanks  :somuchwin:
 

0B36

Expert
Joined
Jan 6, 2014
Messages
1,324
Reaction score
8
Basically a variable used to assign values and stored in memory for future executions and implementation.
 
Status
Not open for further replies.
Top