ACS suggestions
Moderator: GZDoom Developers
-
- Site Admin
- Posts: 7749
- Joined: Wed Jul 09, 2003 10:30 pm
-
- Lead GZDoom+Raze Developer
- Posts: 49223
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
-
- Posts: 43
- Joined: Sun Dec 05, 2004 1:35 pm
well this like this arnt possible with the other ways like thing_move
creat a thing that moves in decorat and put this in ACS
1st make a thing in decorate that move around another thing like the Afrit in monster resource wad
then you could do something like this in acs
this would take that thing with the comits going around it and follow the player, now you have a comit circling the player
thing_move cant do this and if im correct that spawn hack would just make the comit stey in one place.
creat a thing that moves in decorat and put this in ACS
1st make a thing in decorate that move around another thing like the Afrit in monster resource wad
then you could do something like this in acs
Code: Select all
script 1 open
{
Thing_ChangeTID(0,Playernumber()+256);
int playerX = getactorx(256);
int playerY = getactory(256);
setactorx(1,playerX);
setactory(1,playerY);
}
thing_move cant do this and if im correct that spawn hack would just make the comit stey in one place.
-
- Posts: 2529
- Joined: Mon Mar 22, 2004 7:00 pm
- Preferred Pronouns: He/Him
- Location: California, USA. Previously known as "Agent ME".
-
- Posts: 43
- Joined: Sun Dec 05, 2004 1:35 pm