CLEO Help Prolemb with sanny builder

CLEO related
Status
Not open for further replies.

Shakira

Active member
Joined
Jul 11, 2014
Messages
191
Reaction score
0
i have code
Actor.StorePos($Player_Actor, 1@ 2@ 3@)
3@ += 10.0
wait 300
Actor.PutAt($Player_Actor, 1@ 2@ 3@)
so code Actor.StorePos($Player_Actor, 1@ 2@ 3@)
what meaning Actor.StorePos , 1@ 2@ 3@?
and
3@ += 10.0
Actor.PutAt($Player_Actor, 1@ 2@ 3@)
I do not understand this code
 
Joined
Feb 18, 2005
Messages
2,965
Reaction score
271
It's pretty straightforward  :stoned:

Code:
Actor.StorePos($Player_Actor, 1@ 2@ 3@)
Store to variables 1@ 2@ 3@ from actor handle ($player_actor) world coordinates(x, y, z)
Code:
3@ += 10.0
Increase the z coordinate by 10.0
Code:
Actor.PutAt($Player_Actor, 1@ 2@ 3@)
Put the actor with handle ($Player_actor) at 1@ 2@ 3@ coordinates.
 
Status
Not open for further replies.
Top