diff options
Diffstat (limited to 'world/map')
-rw-r--r-- | world/map/npc/008-1/annualeaster.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/world/map/npc/008-1/annualeaster.txt b/world/map/npc/008-1/annualeaster.txt index 1ec95cbe..23d7611a 100644 --- a/world/map/npc/008-1/annualeaster.txt +++ b/world/map/npc/008-1/annualeaster.txt @@ -129,10 +129,14 @@ OnSpawn: set .@y, .loc[(.@e-1)+.loc[1]]; set .eID, .eID + 1; // give the egg an id set .@name$, "#--Ee"+chr(3)+.eID; - void puppet(strnpcinfo(3), .@x, .@y, .@name$, 375); // spawn the egg - initnpctimer .@name$; // init puppeteer check timer if (.eID == 2147483647) set .eID, 0; // start over if id = 0x7FFFFFFF + if (puppet(strnpcinfo(3), .@x, .@y, .@name$, 375) < 1) goto L_RetrySpawn; // spawn the egg + initnpctimer .@name$; // init puppeteer check timer + end; + +L_RetrySpawn: + addnpctimer 0, strnpcinfo(0) + "::OnSpawn"; // schedule a spawn end; S_Spawn: |