diff options
Diffstat (limited to 'npc/002-2/ratto.txt')
-rw-r--r-- | npc/002-2/ratto.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/002-2/ratto.txt b/npc/002-2/ratto.txt index 92dd857ef..82190f2ca 100644 --- a/npc/002-2/ratto.txt +++ b/npc/002-2/ratto.txt @@ -33,32 +33,32 @@ OnRatto4Respawn: end; OnRatto1Death: - .@q2=getq2(ShipQuests_Peter); setq2 ShipQuests_Peter, .@q2|1; + .@q2=getq2(ShipQuests_Peter); if (.@q2 == 15) goto L_Victor; addtimer(65000, "RattosControl::OnRatto1Respawn"); end; OnRatto2Death: - .@q2=getq2(ShipQuests_Peter); setq2 ShipQuests_Peter, .@q2|2; + .@q2=getq2(ShipQuests_Peter); if (.@q2 == 15) goto L_Victor; addtimer(65000, "RattosControl::OnRatto2Respawn"); end; OnRatto3Death: - .@q2=getq2(ShipQuests_Peter); setq2 ShipQuests_Peter, .@q2|4; + .@q2=getq2(ShipQuests_Peter); if (.@q2 == 15) goto L_Victor; addtimer(65000, "RattosControl::OnRatto3Respawn"); end; OnRatto4Death: - .@q2=getq2(ShipQuests_Peter); setq2 ShipQuests_Peter, .@q2|8; + .@q2=getq2(ShipQuests_Peter); if (.@q2 == 15) goto L_Victor; addtimer(65000, "RattosControl::OnRatto4Respawn"); |