Sylphas2010-03-03 06:55:39
QUOTE (Lendren @ Mar 3 2010, 12:53 AM) <{POST_SNAPBACK}>
I use the simple approach. The trick is to store the lists in the order you put the items on, then reverse it to take them off. Strip everything, then put everything on. Easy-peasy.
Slightly harder if I want to inventory a dresser automatically and set up outfits on the fly without digging in the code, but you're right, I might be over thinking it.
Kelysa2010-03-03 10:51:01
Kaguya and I do this, I just use aliases.
ongaku2010-03-03 12:27:17
I just completed the last Collegium class I needed on Xaakin, but I didn't get any achievements from it. Using the command COLLEGE yielded no results other than "You are a graduate of the University of Cosmic Understanding (honours)." Have I done something wrong? When I did COLLEGE on Ongaku after the Newbie achievements were added, it gave me all the achievements from completing my Collegium quests.
Unknown2010-03-03 12:29:10
Try using GUILD STATUS.
ongaku2010-03-03 13:11:56
QUOTE (Sharduk @ Mar 3 2010, 07:29 AM) <{POST_SNAPBACK}>
Try using GUILD STATUS.
D'oh, that did it. Thanks! *feels dumb*
Unknown2010-03-03 13:25:46
No problem.
Lendren2010-03-03 16:19:32
QUOTE (Sylphas @ Mar 3 2010, 01:55 AM) <{POST_SNAPBACK}>
Slightly harder if I want to inventory a dresser automatically and set up outfits on the fly without digging in the code, but you're right, I might be over thinking it.
How could the code even hope to guess what goes with what? You'll be wearing plaids with stripes, and high heels with overalls! The horror!
Unknown2010-03-03 16:59:53
QUOTE (Simimi @ Mar 2 2010, 11:30 PM) <{POST_SNAPBACK}>
Well the trigger is not catching methinks... debug mode is cool though!
EDIT: Works just fine in Mush, though I forgot to account for spaces, don't know of any mobs with spaces in their names on ih though...
EDIT: Works just fine in Mush, though I forgot to account for spaces, don't know of any mobs with spaces in their names on ih though...
I have an alias to do this for me. What I do is I use mih (mantis info here... but that'll be changing as I'm working on stygian now)
anyways, the alias code looks like this
CODE
send("config pagelength 200")
tempTimer(0.5, ])
tempTimer(0.5, ])
and, finally, the functions involved
CODE
function mantis_get_room_items()
  mantis_room_items = {}
  mantis_room_item_types = {}
  mantis_ih_trigger_id = tempLineTrigger(0,200,])
  send("ih")
end
function mantis_read_room_items()
  local item = line:match(])
  if item == nil then
    killTrigger(mantis_ih_trigger_id)
    send("config pagelength 40")
    deleteLine()
  else
    item = item:match("%w+%d+")
    local type = item:match("%a+")
    mantis_room_item_types = 1
    table.insert(mantis_room_items, item)
    deleteLine()
  end
end
  mantis_room_items = {}
  mantis_room_item_types = {}
  mantis_ih_trigger_id = tempLineTrigger(0,200,])
  send("ih")
end
function mantis_read_room_items()
  local item = line:match(])
  if item == nil then
    killTrigger(mantis_ih_trigger_id)
    send("config pagelength 40")
    deleteLine()
  else
    item = item:match("%w+%d+")
    local type = item:match("%a+")
    mantis_room_item_types = 1
    table.insert(mantis_room_items, item)
    deleteLine()
  end
end
Essentially, what this does is tell my system I want to capture the items in IH into a table, it clears the table mantis_room_items and mantis_room_item_types, and then fills them. The only problem is if you happen to get a line of txt between setting the line trigger and sending the "ih" command. I'm still ironing that out. It happens to me maybe once a r/l day.
Sylphas2010-03-03 18:15:30
QUOTE (Lendren @ Mar 3 2010, 11:19 AM) <{POST_SNAPBACK}>
How could the code even hope to guess what goes with what? You'll be wearing plaids with stripes, and high heels with overalls! The horror!
It would parse a dresser, sort them by layer and body placement, then you'd put them in outfits, and it would wear/unwear them in the right order and throw errors if you try to add something like two pairs of boots to an outfit or something.
Zallafar2010-03-03 21:51:34
QUOTE (Lendren @ Mar 3 2010, 08:19 AM) <{POST_SNAPBACK}>
How could the code even hope to guess what goes with what? You'll be wearing plaids with stripes, and high heels with overalls! The horror!
Mmmmmmmm ... high heels and overalls and nothing else ..... mmmmmmmmm........
Lendren2010-03-04 04:23:46
QUOTE (Zallafar @ Mar 3 2010, 04:51 PM) <{POST_SNAPBACK}>
Mmmmmmmm ... high heels and overalls and nothing else ..... mmmmmmmmm........
...now that you mention it...
Aerotan2010-03-04 10:23:30
I've lived in NC for far too long to see overalls as appealing, I'm afraid.
Can you see the results of SC or STAT under blackout?
Can you see the results of SC or STAT under blackout?
Unknown2010-03-04 10:43:04
Overalls are just blech. You people are insane.
Zallafar2010-03-04 13:39:38
QUOTE (Kialkarkea @ Mar 4 2010, 02:43 AM) <{POST_SNAPBACK}>
Overalls are just blech. You people are insane.
That's because you are thinking this and I am thinking this, this, or this.
Ssaliss2010-03-04 13:45:08
Hawt.
The last three, at least
You can keep the first to yourself.
The last three, at least

Unknown2010-03-04 14:41:01
Are there any negative effects to weather here, requiring that you keep clothed at all times?
Unknown2010-03-04 14:44:10
Nope. Way, way back in the olden days of Achaea, there were some chill/heat effects in certain areas/weather, but that's gone the way of the dodo now.
ongaku2010-03-04 14:44:30
QUOTE (Sharduk @ Mar 4 2010, 09:41 AM) <{POST_SNAPBACK}>
Are there any negative effects to weather here, requiring that you keep clothed at all times?
Not that I'm aware of. Most of my characters run around "scantily clad" according to my STAT and they've never had any issues.
Unknown2010-03-04 14:44:58
Ah, good. Just keep noticing the 'chill breeze, you shiver' messages and was starting to wonder. I'm Kepheran, I don't need clothes. D=
Aoife2010-03-04 15:23:15
QUOTE (Sharduk @ Mar 4 2010, 09:44 AM) <{POST_SNAPBACK}>
Ah, good. Just keep noticing the 'chill breeze, you shiver' messages and was starting to wonder. I'm Kepheran, I don't need clothes. D=
That's just an environment or area ambient message.