Get your own free workspace
View
 

FrontPage

Page history last edited by Esha 3 years, 7 months ago

Spelling Resource

 

This site exists as a resource for the Spelling mod, a place where users can upload their lines, either to show examples of how the mod works, or just for the entertainment value if they have a particularly good one.  There aren't any real rules here, just look at the format below and add your own.  Though anything that's slanderous or seriously offensive to any group/individual I would likely have to remove, so keep it as clean as you can!


Add yer Spellings here!

The following lines are what would normally follow /spelling add [...].

 

entangler # entangling roots # applied # say # 1 # This... HITNAME has been bound by my Entangling Roots!

 

catshift # cat form # success # emote # 1 # lets out a feral mrowl as his form shifts to that of a lion.

 

prowler # prowl # applied # emote # 1 # slinks off into the shadows, fading from sight.

 

poing # pounce # success # say # 1 # Death from above!  Ha, HITNAME is dazed.

 

woosh # aspect of the cheetah # success # say # 1 # Woosh!

 

snowup # tranquility # success # say # 1 # A grand gift from the Earthmother... inverse snow!

 

summonworgpup # id:15999 # start # say # 1 # I miss my little dog so much...  Oh!  There he is.

 

coward # cower # success # emote # 1 # backs away in fear and hides behind the nearest meatshield.

 

mangler # mangle (cat) # success # emote # 4 # mauls HITNAME with a mighty mangle!

 

growlfails # growl # fail # say # 1 # You failed to growl PETHITNAME?  Don't worry, there's always next time!

 

druidgowoosh # dash # success # emote # 1 # bursts into an energised feline sprint!

 

invis1 # id:66 # success # say # 1 # Now you see me...

 

invis2 # id:32612 # applied # say # 1 # ..and now you don't.PLAYERISDEST

 

rocky # earth shield # success # say # 1 # Thanks, you rock!  And now, I rock.PLAYERISDEST

 

whitemane # frostwolf howler # succeeded # say # 1 # I called you Whitemane, and loyally you came.  Now, let us ride like the wind!

 

piccolo1 # id:18400 # success # staticemote # 1 # sitIGNOREREQS

 

piccolo2 # id:18400 # success # staticemote # 1 # standIGNOREREQS

 

piccolo3 # id:18400 # success # staticemote # 1 # angryIGNOREREQS

 

piccolo4 # id:18400 # success # say # 1 # You no make me dance!!!1IGNOREREQS

 

Add yer SpellingScripts here!

This section is for Spelling Scripts, the most advanced use of Spelling!  Please add your scripts in the same format as below, complete with explanations.

 

[ Ritual of Refreshment - Foods for all! ]

 

Description:

 

This is fired when you cast Ritual of Refreshment, and it makes you say different things based on your current company (raid/party/say).  It'll also make you appear to be the most worringly disturbed Mage on the server (guaranteed!).

 

Spelling Entry:

 

/spelling add foods # ritual of refreshment # create # script # 1 # eatfoods

 

Spelling Script:

 

Spelling.Scripts.eatfoods = function()

     local text, channel

 

     if GetNumRaidMembers() > 0 then

          text, channel = "Many", "RAID"

 

     if GetNumPartyMembers() > 0 then

          text, channel = "You few", "PARTY"

 

     else text, channel = "I", "SAY" end

 

     text = text.." will eat my magical meats!"

 

     SendChatMessage(text, channel)

 

     DoEmote("LAUGH")

end

 

[ Any buff - Teh Dance! ]

 

Description:

 

This scrippt is designed so that a Druid, if they're in Bear, Dire Bear, Cat, or Travel form, will dance for the person who buffed them.  Non shapeshifted Druids will not dance (it wouldn't be as funny, would it?).

 

Spelling Entry:

 

/spelling add dancylads # anybuff # applied # script # 1 # tehdancePLAYERISDEST

 

Spelling Script:

 

Spelling.Scripts.tehdance = function(source, dest, spell)

    local form = GetShapeshiftForm(true)

 

    if form ~= 1 and form ~= 3 and form ~= 4 then return end

    if not source or UnitIsPlayer(source) ~= 1 or source == UnitName("player") then return end

 

    SendChatMessage("Thanks for that "..spell..", I love "..spell.."!")

 

     if InCombatLockdown() then return end

 

     DoEmote("DANCE") SendChatMessage("does his special dance for "..source..".", "EMOTE")

end

Comments (0)

You don't have permission to comment on this page.