Eudora

From Kolmafia
Revision as of 21:51, 24 May 2017 by imported>AlbinoRhino
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Function Syntax

boolean eudora(string correspondent )

string eudora()

  • correspondent which eudora correspondent to switch to. (Penpal, Game Magazine, Xi?, New-You Club)

Similar to the CLI "eudora" commmand. The boolean version switches between correspondents. It returns true if the switch was successful. The string version returns the current correspondent. (see KoLMafia r16978)

Code Sample

Check if your current correspondent is the New-You Club, and if not, switch to it.

if (eudora() != "New-You Club")
{
   eudora("New-You Club");
}

CLI Equivalent

eudora (penpal, game, xi, newyou) - switch to the specified correspondent. If no parameter is provided, the command will report your current correspondent.