View previous topic :: View next topic |
Author |
Message |
Säjam of EVOS Lieutenant Colonel

Joined: 09 Aug 2003 Posts: 2 Location: Everywhere you don't want me to be
|
Posted: Tue Sep 23, 2003 3:40 am Post subject: Moving multiple npcs at same time in a pattern |
|
|
is it possible to move different npcs in a specific pattern at the same time?
Ex. Have npc 1 move south,2 then west,3...MEANWHILE...npc 2 moves north,4 then move east,2..?? _________________ All we have to decide is what to do with the time that is given to us. |
|
Back to top |
|
 |
Sew Just here for looks

Joined: 15 Mar 2003 Posts: 221 Location: #Sew
|
Posted: Tue Sep 23, 2003 3:51 am Post subject: |
|
|
Sure, just don't use the "Wait for NPC" command.
~Sew |
|
Back to top |
|
 |
Me HI.

Joined: 30 Mar 2003 Posts: 870 Location: MY CUSTOM TITLE CAME BACK
|
Posted: Tue Sep 23, 2003 7:33 am Post subject: |
|
|
More specifically:
Code: | walk npc(1, down, 2)
walk npc(2, left, 3)
wait for npc(1)
walk npc(1, right, 9)
wait for npc(2)
walk npc(2, up,4)
etc. |
As you can see, you have to make sure to include the wait commands at the right spot, otherwise you'll get one f*cked up pattern. _________________ UP DOWN UP DOWN LEFT LEFT RIGHT RIGHT A B START |
|
Back to top |
|
 |
Corak of EVOS

Joined: 10 May 2003 Posts: 54 Location: Purgatory City
|
Posted: Tue Oct 07, 2003 7:08 pm Post subject: |
|
|
Me and Sajam figured it out. Thanks fellas. _________________ Initiate game advertisment NOW! Stenmele Osmium
What is the Feasting? |
|
Back to top |
|
 |
|