View Single Post
07-11-10, 11:44 AM   #10
Sythalin
Curse staff
 
Sythalin's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2006
Posts: 680
Originally Posted by Seerah View Post
pastebin links are fine. But we cannot vouch for the security of downloads from external sites, hence the rule.

/edit: pastebin (or similar) links are actually great - because then we can see line numbers and someone else can put up a reply to your code.
Similar post layouts can be done here as well if you use the [highlight=lua] wrapper around your code.

Example:
lua Code:
  1. local f = CreateFrame("Frame")
  2. f:SetScript("OnEvent", function(self, event, ...) if f[event] then return f[event](self, event, ...) end end)
  3. f:RegisterEvent("ADDON_LOADED")
  4. f:RegisterEvent("PLAYER_ENTERING_WORLD")
  5. f:RegisterEvent("UNIT_EXITED_VEHICLE")
  6. f:RegisterEvent("PLAYER_TALENT_CHANGED")
  7. f:Show()
  Reply With Quote