Print 

Author Topic: *** QUICK SAY RULES/(THINS) LIKE "SPAM" ***  (Read 2246 times)

Offline UniQ

  • Newbie Poster
  • *
  • Posts: 9
*** QUICK SAY RULES/(THINS) LIKE "SPAM" ***
« on: April 05, 2011, 10:32:12 AM »
Hello Reader,

I have a question about something ...
I just want to know how people can say rules Quick in a server
Like "SPAM".
If someone knows it, please tell me

Thank You,

Offline Còól

  • Posts Too Much
  • *****
  • Posts: 2191
  • Life is uncertain, Death is not
Re: *** QUICK SAY RULES/(THINS) LIKE "SPAM" ***
« Reply #1 on: April 05, 2011, 11:00:20 AM »
Well we have a program that runs in the background that we use to type our rules in the server. That is how we can spam our rules and warnings in the server so quickly.

BFM_CòóL IS CòóL!!! - Love, MiG



A CòóL ORIGINAL

If life has not scarred you, you have not lived it.

You Have All The Weapons You Need,
Now Fight!!

Ill give you a cookie if you can tell me what that last quote is from!!

Offline UniQ

  • Newbie Poster
  • *
  • Posts: 9
Re: *** QUICK SAY RULES/(THINS) LIKE "SPAM" ***
« Reply #2 on: April 05, 2011, 12:30:23 PM »
Can you tell me what progamma that is, or give me the link.
I'm searching many hours but can't find it.

Offline BFM_Thunder

  • BFM Admin
  • *
  • Posts: 932
Re: *** QUICK SAY RULES/(THINS) LIKE "SPAM" ***
« Reply #3 on: April 05, 2011, 12:47:59 PM »
we can tell you what program we use and send u a link ofcourse, we didnt made the program.

though we have rules for using it whilst in one of our servers.
 
you cant have macro's that equal BFM's, explain rules or tell people what to do.
you cant spam the chat with macro's
you cant create advertisement or macro's that link to a website.

you can use them for saying things like, "good game erveryone" or "nice driving" idk.

if you need the program for use outside BFM than thats all fine.

as soon as you posted you understand i'll pm you the link  :)
« Last Edit: April 05, 2011, 01:00:47 PM by BFM_Thunder »

Offline UniQ

  • Newbie Poster
  • *
  • Posts: 9
Re: *** QUICK SAY RULES/(THINS) LIKE "SPAM" ***
« Reply #4 on: April 05, 2011, 12:53:29 PM »
Thank you, :)

I use it for my own clan server so. :P

Greetings,

Offline UniQ

  • Newbie Poster
  • *
  • Posts: 9
Re: *** QUICK SAY RULES/(THINS) LIKE "SPAM" ***
« Reply #5 on: April 05, 2011, 02:53:29 PM »
Ok I made a script specially for Halo.

But how can I use it in Halo.

Becuase Halo is Full Screen.

Offline UniQ

  • Newbie Poster
  • *
  • Posts: 9
* * * * * AutoHotKey * * * * *
« Reply #6 on: April 06, 2011, 07:09:54 AM »
Hey BFM,

I have made a script in AutoHotKey
For typing Rules in a server.
But i don't know how to use it in Halo.

My question is ..
Can you send me a sample with the commands
that i can see it must be

Offline Còól

  • Posts Too Much
  • *****
  • Posts: 2191
  • Life is uncertain, Death is not
Re: * * * * * AutoHotKey * * * * *
« Reply #7 on: April 06, 2011, 07:20:42 AM »
Well how about this. We cannot send you our command list but if you PM yours to me I will fix whatever needs to be fixed and tell you how to use it.

BFM_CòóL IS CòóL!!! - Love, MiG



A CòóL ORIGINAL

If life has not scarred you, you have not lived it.

You Have All The Weapons You Need,
Now Fight!!

Ill give you a cookie if you can tell me what that last quote is from!!

Offline Tanxs1

  • Posts Too Much
  • *****
  • Posts: 3165
  • There there, it's ok....
    • Hehehehehe...
Re: * * * * * AutoHotKey * * * * *
« Reply #8 on: April 06, 2011, 07:22:17 AM »
Well how about this. We cannot send you our command list but if you PM yours to me I will fix whatever needs to be fixed and tell you how to use it for a price of 10 cookies.

Woah, Cool! You promised me them cookies!


Offline UniQ

  • Newbie Poster
  • *
  • Posts: 9
Re: * * * * * AutoHotKey * * * * *
« Reply #9 on: April 06, 2011, 07:50:12 AM »
Ah That's Poor.
You just can help me :P

Offline BFM_Thunder

  • BFM Admin
  • *
  • Posts: 932
Re: *** QUICK SAY RULES/(THINS) LIKE "SPAM" ***
« Reply #10 on: April 06, 2011, 10:49:14 AM »
open autohotkey so it shows in your system tray.

have you tested if the script works?

in the script you assigned a key(i.e. F3 key) for showing a rule, did you?

hit that key and that should type automatically in your "ALL -" chat line, press enter to let it show in the server.


a small sample script if you need it for guidence...
use notepad (not wordpad) type or copy.


#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. (you dont need this line for the script to work)
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. (this line will speed things up a bit :))
#MaxThreads 1
#LTrim


#IfWinActive Halo ; Place Halo hotkeys below this line (important line)

create rules like this
F4::
    rule =
    (
      >>create a rule or line here<<     )
    SendText(rule)
    Return

 to make a rule that will automatically type and press enter do this...
F5::
    rule =
    (
      see the difference, the enter has these>>{}<< around it{Enter}
      and so you can make it go on and on and on! {Enter}
    )
    SendText(rule)
    Return

here you can adjust timings
 SendText(ChatText)
  {
    If (A_ThisHotkey = A_PriorHotkey and A_TimeSincePriorHotkey < 1500)
    return
    BlockInput On <<< will block you from moving or typing in halo.
    Send {ENTER}
    Sleep 250
    Loop, parse, ChatText, `n
    {
      If (A_Index != 1)
     Sleep 1500
      Send t
      Sleep 150
      Send %A_LoopField%{Space}
    } BlockInput Off
      Return
  }

  
#IfWinActive ; Place Halo hotkeys above this line

i just thought i post all info at once, most of it is copied from my script and edited by myself :P lol
« Last Edit: April 07, 2011, 11:36:30 AM by BFM_Thunder »

Offline BFM_RedFox

  • BFM Admin
  • *
  • Posts: 804
Re: * * * * * AutoHotKey * * * * *
« Reply #11 on: April 06, 2011, 10:50:15 AM »
This may help you.

Offline MrMxyzptlk

  • Posts Too Much
  • *****
  • Posts: 9208
  • Never backward,           always forward!
    • My 5th Dimensional Homepage
Re: * * * * * AutoHotKey * * * * *
« Reply #12 on: April 06, 2011, 11:15:59 AM »



Uniq: You already have a thread open on this topic....


Please try to limit a topic to ONE thread so that information does not get "misplaced" in one or the other and go unseen.


TY.



Mr. Mxy's current Word Corner word is catachresis    

Print