diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-01-04 23:10:38 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-01-04 23:10:38 -0200 |
commit | 3021284f1c9fe196bf180f263bc83044fd24907e (patch) | |
tree | 4af55577748848e4e33a1ff3c8b53381c91fa0cd /npc/002-2/ratto.txt | |
parent | 70b8dc8dbc809749901e5639ae372680e113bd5e (diff) | |
download | serverdata-3021284f1c9fe196bf180f263bc83044fd24907e.tar.gz serverdata-3021284f1c9fe196bf180f263bc83044fd24907e.tar.bz2 serverdata-3021284f1c9fe196bf180f263bc83044fd24907e.tar.xz serverdata-3021284f1c9fe196bf180f263bc83044fd24907e.zip |
Some clearly buggy code on Peter and RattoControl
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"); |