Feature - Rejected Separate on-login/logout scripts per character

gCLI output:

Installing default certificate validation...
Validating login server (www.kingdomofloathing.com)...
Duplicate modifiers for: thick-skinned
794 players online.
Sending login request...
Initializing session for wrldwzrd89...
Refreshing session data...
Synchronizing moon data...
Loading character status...
Retrieving character data...
Refreshing closet...
Examining consumables in closet...
Examining equipment in closet...
Examining miscellaneous items in closet...
Updating inventory...
Retrieving quest data...
Retrieving familiar data...
Familiar data retrieved.
Retrieving campground data...
Refreshing storage...
Examining meat in storage...
Examining consumables in storage...
Examining equipment in storage...
Examining miscellaneous items in storage...
Session data refreshed.
7 days until Valentine's Day, Mysticism bonus today (not tomorrow).
Visiting Crimbo Tree in clan VIP lounge
Visiting Deluxe Mr. Klaw "Skill" Crane Game in clan VIP lounge
Visiting Deluxe Mr. Klaw "Skill" Crane Game in clan VIP lounge
You acquire an item: stuffed key
Visiting Deluxe Mr. Klaw "Skill" Crane Game in clan VIP lounge
You acquire an item: stuffed monocle
Visiting Looking Glass in clan VIP lounge
You acquire an item: "DRINK ME" potion
Let's cannonball in the swimming pool.
You start screwing around in the swimming pool.
In the pool, flipping over.

Doing handstand in clan VIP swimming pool
In the pool, diving for treasure.

Diving for treasure in clan VIP swimming pool
You found a Ze™ goggles in the VIP pool!
Getting out of the pool.

Getting out of clan VIP swimming pool

Harvesting your garden
You acquire peppermint sprout (3)
14 prices updated from http://kolmafia.us/scripts/updateprices.php?action=getmap
You need 1 more Crown of the Goblin King to continue.
You need 1 more Crown of the Goblin King to continue.


Why is KoLmafia doing this? The script that puts on the Adventuring outfit is NOT supposed to apply to this character... only for my other character, miniwrld. Since wrldwzrd89 lacks a Crown of the Goblin King... this failure is to be expected under the current conditions.
 

slyz

Developer
Add something like
PHP:
if ( my_name() == "miniwrld" )
{
     outfit( "Adventuring" );
}
to your script.
 

Bale

Minion
You can code a login script to behave differently for different characters.

Code:
switch(my_name()) {
case "bale":
   // Do Bale's stuff
   break;
case "wrldwzrd89":
   // Do WrldWzrd's stuff
break;
}
 
Top