|
|
Line 1: |
Line 1: |
| cat save/athena.txt | sort -n > athena-sorted.txt
| | Item drawing order and item IDs: |
|
| |
|
| | [(BASE, -), (BOOTS, 64), (PANTS, 1), (SHIRT, 512), (MISC1, 16), (MISC2, 128), (HAIR, -), (HAT, 256), (CAPE, 8), (GLOVES, 4), (WEAPON, 2), (SHIELD, 32)] |
|
| |
|
| printf "Top married couples\n===================\n" > married.txt
| | I propose to use MISC1 as `amulet' slot and MISC2 as ring slot. |
| | |
| cat athena-sorted.txt | ./marriage-info -c | sort -rn | awk '{printf "%d %s oo %s (%s (%s, %d), %s(%s, %d))\n", ++rank, $3, $6, $3, $4, $5, $6, $7, $8}' | tr '%' ' ' | head -50 >> married.txt
| |
| | |
| printf "Top female singles\n==================\n" > female-singles.txt
| |
| | |
| cat athena-sorted.txt | ./marriage-info -f | sort -rn | awk '{printf "%d %s(%d)\n", ++rank, $3, $1}' | tr '%' ' ' | head -50 >> female-singles.txt
| |
| | |
| printf "Top male singles\n===============\n" > male-singles.txt
| |
| | |
| cat athena-sorted.txt | ./marriage-info -m | sort -rn | awk '{printf "%d %s(%d)\n", ++rank, $3, $1}' | tr '%' ' ' | head -50 >> male-singles.txt
| |
Revision as of 17:01, 24 October 2008
Item drawing order and item IDs:
[(BASE, -), (BOOTS, 64), (PANTS, 1), (SHIRT, 512), (MISC1, 16), (MISC2, 128), (HAIR, -), (HAT, 256), (CAPE, 8), (GLOVES, 4), (WEAPON, 2), (SHIELD, 32)]
I propose to use MISC1 as `amulet' slot and MISC2 as ring slot.