userFunction Deny party whisper
Posted: Sun Sep 09, 2012 8:26 am
Created a small userfunction for when you running a mems bot like DoD farm or GC easy that when you get whisperd if they can join youre pt the bot replies pt is full or when a guildie or anyone else whispers to you it will reply that youre busy atm and wil come back to them in a while.
inside the userFunction is a section called: partyTexts here you can setup the words it gonna react on for party invites
There are two tables of reaction
1st:Party reactions
2nd:Other
setup:
add this to you're onload section of you're way-point
These can be setup just like Lisa gm detection, because this is offcourse stolen for like 99% from Lisa
prob could use some tweaking here and there but i didnt have any prob till now running it
inside the userFunction is a section called: partyTexts here you can setup the words it gonna react on for party invites
Code: Select all
partyTexts = Set {"invite","mems","pt","party","join","space","inv"}
1st:Party reactions
Code: Select all
DenyResponseTable = {
[1] = "Sorry, party is full atm",
[2] = "Im trying something, maybe later",
[3] = "when there is space ill let you know",
[4] = "Just getting a few mems then im off",
[5] = "sry m8, no spot free",
[6] = "i wil invite you when there is a spot",
}
Code: Select all
ResponseTable = {
[1] = "Busy atm",
[2] = "Sry i dont have time",
[3] = "Can you whisper me later again, im busy atm",
[4] = "Testing some stuff ill /w back in a few",
}
add this to you're onload section of you're way-point
Code: Select all
startDenyPartyWhisper()
These can be setup just like Lisa gm detection, because this is offcourse stolen for like 99% from Lisa

prob could use some tweaking here and there but i didnt have any prob till now running it