Jotter
From WoWWiki
(Redirected from Jotter - an ingame notepad)
WoWWiki Hosted AddOn Page
Jotter is an in-game notebook, originally by Jason Slaughter ("Kaitlin of Medivh"). Broken by the "Before The Storm" patch (version 20000), Jotter-K can be resurrected by applying the following patch to the jotter-k.lua file:
--- jotter-k.lua.old 2005-05-11 12:07:36.000000000 -0600
+++ jotter-k.lua 2006-12-16 14:34:28.000000000 -0700
@@ -192,7 +192,7 @@
UIDropDownMenu_Initialize(this, Jotter.userDropdown.init);
UIDropDownMenu_SetSelectedValue(this, Jotter.user);
UIDropDownMenu_SetWidth(240, Jotter_UserDropdown);
- OptionsFrame_EnableDropDown(Jotter_UserDropdown);
+ -- OptionsFrame_EnableDropDown(Jotter_UserDropdown);
end;
init = function()
@@ -210,7 +210,7 @@
end
UIDropDownMenu_AddButton(info);
- for key, val in JotterK do
+ for key, val in pairs(JotterK) do
local _,_,playerName,realmName = strfind(key,"(.+) of (.+)");
if ( playerName and realmName and realmName == GetCVar("realmName") ) then
info = {};
@@ -242,7 +242,7 @@
getTotal = function()
local total = 0;
- for key, val in Jotter.bookmarks do
+ for key, val in pairs(Jotter.bookmarks) do
if ( tonumber(key) ) then
total = total + 1;
end
@@ -324,7 +324,7 @@
if ( not table ) then
return {};
end
- for key, val in table do
+ for key, val in pairs(table) do
if ( type(val) ~= "table" ) then
copy[key] = val;
else
