Community
AGI Programming => Mega Tokyo AGI Archive => Topic started by: Lancelot on January 03, 2004, 11:48:24 PM
-
Hi
I'm new to Agi.
I got stuck on adding a nother character to my game.
Can somebody help me.
Tell me where I can find a tutorial on adding characters.
-
Character as in NPC? It works just like an object.
load.view(5);
animate.obj(NPC);
set.view(5,NPC);
position(NPC,100,90);
draw(NPC);
To let him wander around the screen, add this code:
wander(NPC);
Hope this helps...
-
Thanks it realy helped