What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

[Plugin] Chatterer(Alpha)

g0dzix

Member
Joined
Jul 3, 2014
Messages
39
Reaction score
2
Hi i developed plugin for test , please try it, and give me feedback, cause i dont have opinion to test it. Plugin to send and track messages in the chat.

Menu - Сtrl + e.

Chatterer screen.webp
View attachment chatterer0.2.zip
 
Last edited:
Ok, I added code to the archive in the first post
Please remove the DLL from the archive

Code:
Your work may not contain an EXE or DLL file (or any compressed file or source-control repository) containing such.
 
nice touch with the randomness in the interval ! ;)

Code:
   if (isControl && (k == Keys.E))

will fire on more that just Ctrl-E ... it will also be true for Ctrl-Shift-E, Ctrl-Alt-E and Ctrl-alt-shift-E

Also in that same area maybe this would be better (but i dont yet know how you use showf, this will just make it toggle the variable on Ctr-E press

Code:
        public void keyDown(Keys k, bool isControl, bool isShift, bool isAlt)
        {
            if (isAlt || isShift) return;
            if (isControl && (k == Keys.E))
            {
                showf = !showf; //this just toggles the value
            }
        }
 
Last edited:
nice touch with the randomness in the interval ! ;)

Code:
   if (isControl && (k == Keys.E))

will fire on more that just Ctrl-E ... it will also be true for Ctrl-Shift-E, Ctrl-Alt-E and Ctrl-alt-shift-E

Also in that same area maybe this would be better (but i dont yet know how you use showf, this will just make it toggle the variable on Ctr-E press

Code:
        public void keyDown(Keys k, bool isControl, bool isShift, bool isAlt)
        {
            if (isAlt || isShift) return;
            if (isControl && (k == Keys.E))
            {
                showf = !showf; //this just toggles the value
            }
        }
Thanks for the feedback, I do not have prepaid AA account to check it. Have you tried to run it? working correctly?



Maybe will be better if i'll do it without hotkeys and just show interface when plugin starts
 
i saw stream Na version and there was shit tons of spamming gold sellers so i guess its working :)
 
It's chinese spammers, and i guess they use chinese software
 
Back
Top