diff options
Diffstat (limited to 'npc/003-1/quirino.txt')
-rw-r--r-- | npc/003-1/quirino.txt | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/npc/003-1/quirino.txt b/npc/003-1/quirino.txt index 4e14eae68..716ef6b10 100644 --- a/npc/003-1/quirino.txt +++ b/npc/003-1/quirino.txt @@ -107,16 +107,12 @@ function quirinHonor { L_SignUp: // Player cannot be carrying anything - getinventorylist; - if(@inventorylist_count>=1) goto L_Full; + if(Weight >= 1) goto L_Full; getcartinventorylist(); if(@cartinventorylist_count>=1) goto L_Full; // Warp player - if (rand2(1,2) == 1) - warp "001-8", rand(42, 57), 42; - else - warp "001-8", rand(42, 57), 57; + warp "001-8", rand2(42, 57), rand2(42, 57); // Prevent further movements! setpcblock(PCBLOCK_SOFT, true); |