Language:
Lua     Change language:
Pastebin: 132196
Author: Anonymous
Subject: Untitled
Created: 2010-01-29 11:10:40
Download and save
Toggle line numbers
1local addon = CreateFrame("Frame"
2 
3addon:RegisterEvent("PLAYER_LOGIN"
4addon:RegisterEvent("PLAYER_ENTERING_WORLD"
5addon:SetScript("OnEvent", function(self, event, ...) 
6    if self and self[event] and type(self[event]) == "function" then 
7        self[event](self, event, ...) 
8    end 
9end
10 
11function addon:PLAYER_LOGIN() 
12end 
13 
14function addon:PLAYER_ENTERING_WORLD() 
15end 
Thread:
[132196] Untitled by Anonymous at 2010-01-29 11:10:40
Tip: Click the line numbers to toggle highliting on that line.

Paste followup:

Language:
Author:
Subject:


    Tabstop:     bigger biggest
Note: You can prefix a line with "@@@" to highlight it.