Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- actor Jashin 10666
- {
- Monster
- Radius 16
- Height 100
- Health 3000
- Speed 2
- +FLOAT
- +NOGRAVITY
- +THRUSPECIES
- Species "Jashin"
- // chase related
- var int user_chase_time;
- var int user_chase_x;
- var int user_chase_y;
- var int user_chase_z;
- var int user_chase_tid;
- States
- {
- Spawn:
- JASH A 1 A_Look
- loop
- See:
- JASH AA 0 ACS_NamedExecuteWithResult("Jashin::ChaseTarget", 0, 0, 0, 0)
- JASH A 1
- loop
- Missile:
- JASA ABCDEFGHIJKLMNOPQRS 2
- JASA S 70
- JASA SRQPONMLKJIHGFEDCBA 1
- goto See
- }
- }
- actor JashinChaser
- {
- Monster
- Radius 16
- Height 100
- +FLOAT
- +NOGRAVITY
- +THRUSPECIES
- Species "Jashin"
- RenderStyle None
- Speed 2
- States
- {
- Spawn:
- JASH A 1
- loop
- DoChase:
- JASH A 0 A_Chase("WaitChase", "WaitChase", CHF_NOPLAYACTIVE)
- JASH A 1
- //goto Spawn
- loop
- WaitChase:
- JASH A 1
- goto DoChase
- }
- }
Add Comment
Please, Sign In to add comment