NinjaInvite 2.0 RELEASE [Send Mass Guild Invites] menu

User Tag List

Page 14 of 19 FirstFirst ... 101112131415161718 ... LastLast
Results 196 to 210 of 271
  1. #196
    wiaf941aelj's Avatar Private
    Reputation
    1
    Join Date
    Oct 2011
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've been testing this addon for a couple of days, can't say anything else than I love it.
    Tho there's a function missing that "rapedotty" got that this doesn't, when you reach the final lvl (85) you got alot more than 49ppl to scan thrue, rapedotty scanned class+race when it found more than 49 in the list. If you could get this into the addon, and perhaps an UI where you can do some basic configs in what level bracket you want to invite




    NinjaInvite 2.0 RELEASE [Send Mass Guild Invites]
  2. #197
    Timmid's Avatar Member
    Reputation
    124
    Join Date
    Apr 2007
    Posts
    244
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by wiaf941aelj View Post
    I've been testing this addon for a couple of days, can't say anything else than I love it.
    Tho there's a function missing that "rapedotty" got that this doesn't, when you reach the final lvl (85) you got alot more than 49ppl to scan thrue, rapedotty scanned class+race when it found more than 49 in the list. If you could get this into the addon, and perhaps an UI where you can do some basic configs in what level bracket you want to invite
    my addon should be doing that as well. it does that with anything that has more that 49 results (well, should anyways..).

  3. #198
    Timmid's Avatar Member
    Reputation
    124
    Join Date
    Apr 2007
    Posts
    244
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    just updated to 2.89, just a couple minor code issues should be resolved.

    Download here: 2.89 Release

  4. #199
    deltoide's Avatar Member
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Fellow,

    I would like to congratulate you for the excellent work they did to update the "NinjaInvite."

    I have the "NinjaInvite" original and adapted it to suit me better, but I'm trying to have some time, add a function on it, as I have a great knowledge of the codes .lua am having difficulties, what I'm trying to do is ...

    When a player refuses my invitation to the guild, I wish him the nickname stay registered as a "SavedVariablesPerCharacter: ignoredPlayers" and whenever my "NinjaInvite" were perform a search, before he make the invitation for my guild, checked prior to Nick is the list of "ignoredPlayers."

    Could it be you help me?

  5. #200
    Timmid's Avatar Member
    Reputation
    124
    Join Date
    Apr 2007
    Posts
    244
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by deltoide View Post
    Fellow,

    I would like to congratulate you for the excellent work they did to update the "NinjaInvite."

    I have the "NinjaInvite" original and adapted it to suit me better, but I'm trying to have some time, add a function on it, as I have a great knowledge of the codes .lua am having difficulties, what I'm trying to do is ...

    When a player refuses my invitation to the guild, I wish him the nickname stay registered as a "SavedVariablesPerCharacter: ignoredPlayers" and whenever my "NinjaInvite" were perform a search, before he make the invitation for my guild, checked prior to Nick is the list of "ignoredPlayers."

    Could it be you help me?
    just use my add-on, it already does this for you.

    also, if you know anything about LUA you'd know how to find my code and use that if you really wanted to.

    cheers.

  6. #201
    deltoide's Avatar Member
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I understand,

    Leveraging his knowledge of ".lua" could you help me turn these two addons that I have in one?

    Addon 1:
    .toc
    ## Interface: 40000
    ## Title: |cFF086BCDVisualCombo|r |cffff6633(Deltoide)|r
    ## Version: 0.1
    ## Notes: Exibe um alerta visual da quantidade de combo que o alvo possui.
    ## Author: Deltoide
    VisualCombo.lua

    .lua
    print("|cFF086BCD** VisualCombo Carregado|r");
    print("** Criador: Deutoide (Warsong)");
    print(" ");
    local _,VisualCombo=...
    local Frame=CreateFrame("Frame","VisualCombo",UIParent)
    function VisualCombo:Initialize()
    Frame:SetWidth(50)
    Frame:SetHeight(50)
    Frame:SetPoint("CENTER",UIParent,"CENTER",1,-185)
    Frame:SetFrameStrata("HIGH")
    local Text=Frame:CreateFontString("$Parent-Text","OVERLAY")
    Text:SetPoint("CENTER",Frame,"CENTER",0,0)
    Text:SetFont("Interface\\AddOns\\VisualCombo\\VISUALCOMBOFONT.TTF",30,"THICKOUTL INE")
    Text:SetShadowColor(0.00,0.00,0.00,0.75)
    Text:SetShadowOffset(3.00,-3.00)
    Text:SetJustifyH("CENTER")
    VisualCombo:Update()
    end
    function VisualCombo:Colorize(P)
    if(P==1)then return 0.00,1.00,0.00,1.00 end
    if(P==2)then return 0.40,0.70,1.00,1.00 end
    if(P==3)then return 1.00,1.00,0.00,1.00 end
    if(P==4)then return 1.00,0.50,0.20,1.00 end
    if(P==5)then return 1.00,0.00,0.00,1.00 end
    return 1.00,1.00,1.00,1.00
    end
    function VisualCombo:Update()
    local Value=GetComboPoints("player")
    local Text=_G["VisualCombo-Text"]
    Text:SetText(Value>0 and Value or nil)
    Text:SetVertexColor(VisualCombo:Colorize(Value))
    if(not Frame.LastValue)then Frame.LastValue=0 end
    Frame.LastValue=Value
    end
    function VisualCombo:OnEvent(Event,Arg1,...)
    if(Event=="PLAYER_LOGIN")then
    VisualCombo:Initialize()
    return
    end
    if(Event=="UNIT_COMBO_POINTS" and Arg1=="player" or (Event=="PLAYER_TARGET_CHANGED"))then
    VisualCombo:Update()
    return
    end
    end
    Frame:SetScript("OnEvent",VisualCombo.OnEvent)
    Frame:RegisterEvent("PLAYER_LOGIN")
    Frame:RegisterEvent("PLAYER_TARGET_CHANGED")
    Frame:RegisterEvent("UNIT_COMBO_POINTS")

    **********************************************************************
    **********************************************************************

    Addon 2
    .toc
    ## Interface: 40000
    ## Title: |cFF086BCDNoLimite|r |cffff6633(Deltoide)|r
    ## Version: 0.1
    ## Notes: Exibe um alerta visual e sonoro quando sua vida fica abaixo de 35%.
    ## Author: Deltoide
    NoLimite.lua

    .lua
    print("|cFF086BCD** NoLimite Carregado|r");
    print("** Criador: Deutoide (Warsong)");
    print(" ");
    local _,NoLimite=...
    local Frame=CreateFrame("ScrollingMessageFrame","NoLimite",UIParent)
    Frame.Threshold=35
    Frame.Warned=false
    function NoLimite:Initialize()
    Frame:SetWidth(450)
    Frame:SetHeight(200)
    Frame:SetPoint("CENTER",UIParent,"CENTER",0,0)
    Frame:SetFont("Interface\\AddOns\\NoLimite\\NOLIMITEFONT.TTF",30,"THICKOUTLINE")
    Frame:SetShadowColor(0.00,0.00,0.00,0.75)
    Frame:SetShadowOffset(3.00,-3.00)
    Frame:SetJustifyH("CENTER")
    Frame:SetMaxLines(1)
    Frame:SetTimeVisible(3)
    Frame:SetFadeDuration(1)
    NoLimite:Update()
    end
    function NoLimite:Update()
    if(floor((UnitHealth("player")/UnitHealthMax("player"))*100)<=Frame.Threshold and Frame.Warned==false)then
    PlaySoundFile("Interface\\AddOns\\NoLimite\\NOLIMITEOGG.OGG")
    Frame:AddMessage("- VIDA BAIXA -", 1, 0, 0, nil, 3)
    Frame.Warned=true
    return
    end
    if(floor((UnitHealth("player")/UnitHealthMax("player"))*100)>Frame.Threshold)then
    Frame.Warned=false
    return
    end
    end
    function NoLimite:OnEvent(Event,Arg1,...)
    if(Event=="PLAYER_LOGIN")then
    NoLimite:Initialize()
    return
    end
    if(Event=="UNIT_HEALTH" and Arg1=="player")then
    NoLimite:Update()
    return
    end
    end
    Frame:SetScript("OnEvent",NoLimite.OnEvent)
    Frame:RegisterEvent("PLAYER_LOGIN")
    Frame:RegisterEvent("UNIT_HEALTH")

    **********************************************************************
    **********************************************************************

    I really appreciate your help and attention, hug and good game.

  7. #202
    deltoide's Avatar Member
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mate, thanks for the help, let me take your knowledge and make a request.

    I gained a addon that would function as an in-game forums, but he is presenting an error that I am not knowing detect, you could take a look at me and see if you can put it to work perfectly?

    thank you

    Addon:
    http://www.curseforge.com/media/file...oard_0.60a.zip

  8. #203
    plagueware's Avatar Member
    Reputation
    1
    Join Date
    Oct 2007
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This looks awesome ^.^ I will have to try it.

  9. #204
    kozzzan's Avatar Active Member
    Reputation
    45
    Join Date
    Nov 2011
    Posts
    199
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm not sure if it works I've been doing this for 4 hours now, and noone joined. And it seems like it invites people in guild already :P
    I use the /ni start short and I send messages to them aswell

    Maybe it's just me being unlucky tho..

    BTW, does it work with having 2 wow's up?
    I think it does but the thing is that it seems to go alot slower then if I have the other wow up and let the guild one be afk..

  10. #205
    deltoide's Avatar Member
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    someone found the error of my addon? and knows how to fix it?

  11. #206
    Timmid's Avatar Member
    Reputation
    124
    Join Date
    Apr 2007
    Posts
    244
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kozzzan View Post
    I'm not sure if it works I've been doing this for 4 hours now, and noone joined. And it seems like it invites people in guild already :P
    I use the /ni start short and I send messages to them aswell

    Maybe it's just me being unlucky tho..

    BTW, does it work with having 2 wow's up?
    I think it does but the thing is that it seems to go alot slower then if I have the other wow up and let the guild one be afk..
    the slowness could be related to your internet connection or memory/processor load. really a lot of different factors there.

    as far as i know, this add-on is working but if people aren't joining they just might not be accepting. a lot of people these days turn off guild invites unless they know one is coming to prevent spam from add-ons like mine (there's a lot of people out there using mine and others these days).

    @deltoide, i don't take requests on fixing or editing add-ons unless it is going to suit my needs.. mainly because i don't have the time. i'm sorry!

  12. #207
    kozzzan's Avatar Active Member
    Reputation
    45
    Join Date
    Nov 2011
    Posts
    199
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Timmid View Post
    the slowness could be related to your internet connection or memory/processor load. really a lot of different factors there.

    as far as i know, this add-on is working but if people aren't joining they just might not be accepting. a lot of people these days turn off guild invites unless they know one is coming to prevent spam from add-ons like mine (there's a lot of people out there using mine and others these days).

    @deltoide, i don't take requests on fixing or editing add-ons unless it is going to suit my needs.. mainly because i don't have the time. i'm sorry!
    Yeah, figured it works now haha and it's really great. I must thank you for this addon.

    Btw, it recently started doing this;
    it tries to find people, invites them and stuff but it doesn't pm them?

    I do /ni start - it searches, invites and stuff but doesn't pm
    BUT
    when i do /ni stop - it starts pming people, and sometimes people already went offline so it says "Can't find XXX"

    Not sure what happened

  13. #208
    bgalakazam's Avatar Private
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can you please do a quickfix for patch 4.3? It doesn't work. When you run it, it fails on sending the invites. Also, I think it is searching for all players now, as opposed to guildless ones only. I tried updating the ACE lib inside the addon to the one compatible with 4.3, but NI still crashes when sending the invites.

    Please send a hotfix update for 4.3

    Cheers.

  14. #209
    Timmid's Avatar Member
    Reputation
    124
    Join Date
    Apr 2007
    Posts
    244
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kozzzan View Post
    Yeah, figured it works now haha and it's really great. I must thank you for this addon.

    Btw, it recently started doing this;
    it tries to find people, invites them and stuff but it doesn't pm them?

    I do /ni start - it searches, invites and stuff but doesn't pm
    BUT
    when i do /ni stop - it starts pming people, and sometimes people already went offline so it says "Can't find XXX"

    Not sure what happened
    you have to enable the PM on invite feature, it's not automatically enabled unfortunately.
    Originally Posted by bgalakazam View Post
    Can you please do a quickfix for patch 4.3? It doesn't work. When you run it, it fails on sending the invites. Also, I think it is searching for all players now, as opposed to guildless ones only. I tried updating the ACE lib inside the addon to the one compatible with 4.3, but NI still crashes when sending the invites.

    Please send a hotfix update for 4.3

    Cheers.
    I'll look into this now, they might have changed some things in the /who system. Blizzard has a tendency to change things without telling LUA developers

    Also, I've updated the main post with a link to download the new version which is updated for 4.3, but still might not work (as seen in above posts).

    I will work on some fixes now.

    Update:

    it turns out there is a limitation on how many members you can invite in a certain amount of time. as soon as i figure out that formula i should be able to update and STILL make my add-on automatic. (others aren't!!!)
    Last edited by Timmid; 11-30-2011 at 10:45 PM.

  15. #210
    Caros2013's Avatar Active Member CoreCoins Purchaser
    Reputation
    67
    Join Date
    Jan 2007
    Posts
    153
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've got the problem of when I start the search, it searches, then sends the whispers but then does not invite them and makes me look like a retard, msginvite is disabled, msgplayer in enabled, instant is enabled, Why won't it ginvite?



Page 14 of 19 FirstFirst ... 101112131415161718 ... LastLast

Similar Threads

  1. [Buying] Buying Mass Guild Inviting (US)
    By ResinMic in forum World of Warcraft Buy Sell Trade
    Replies: 1
    Last Post: 07-30-2013, 09:46 PM
  2. [Addon] Mass Guild Invites with Anti-Spam Feature
    By Kodah_Softpaw in forum World of Warcraft Guides
    Replies: 3
    Last Post: 11-06-2011, 03:02 AM
  3. Mass Guild Invite Macro + Mass Whisper
    By viaro1992 in forum WoW UI, Macros and Talent Specs
    Replies: 15
    Last Post: 01-16-2011, 06:51 PM
  4. [C++ Release] GM Guild Invite Message
    By mager1794 in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 07-26-2008, 02:19 AM
All times are GMT -5. The time now is 01:38 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search