diff options
Diffstat (limited to 'npc/items')
-rw-r--r-- | npc/items/shovel.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/npc/items/shovel.txt b/npc/items/shovel.txt index fc30b9168..18a2b2fc4 100644 --- a/npc/items/shovel.txt +++ b/npc/items/shovel.txt @@ -39,10 +39,15 @@ function script shovel_scatter { .@amount=getarg(5,1); freeloop(true); // DANGEROUS - for (.@i = 0; .@i < .@amount; .@i++) - shovel_scriptItem(.@map$, rand(.@x1,.@x2), rand(.@y1,.@y2), getarg(rand(getargcount()-6)+6)); + for (.@i = 0; .@i < .@amount; .@i++) { + .@id=getarg( rand(getargcount()-6) +6); + //shovel_scriptItem(.@map$, rand(.@x1,.@x2), rand(.@y1,.@y2), .id); + } freeloop(false); + // For testing + .@debugid=(getargcount()-6)+6; + debugmes("array len: %d, minimum index 6, maximum index %d (last was %d)", getargcount(), .@debugid, .@id); .@wtc = getarraysize($@WBT_Random_id); debugmes "Scattered "+.@amount+" items on "+.@map$+". Currently scattered: "+.@wtc; return; |