BFMracing

General Category => Tech Support and Chat => Topic started by: UniQ on April 05, 2011, 10:32:12 AM

Title: *** QUICK SAY RULES/(THINS) LIKE "SPAM" ***
Post by: UniQ 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,
Title: Re: *** QUICK SAY RULES/(THINS) LIKE "SPAM" ***
Post by: Còól 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.
Title: Re: *** QUICK SAY RULES/(THINS) LIKE "SPAM" ***
Post by: UniQ 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.
Title: Re: *** QUICK SAY RULES/(THINS) LIKE "SPAM" ***
Post by: BFM_Thunder 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  :)
Title: Re: *** QUICK SAY RULES/(THINS) LIKE "SPAM" ***
Post by: UniQ on April 05, 2011, 12:53:29 PM
Thank you, :)

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

Greetings,
Title: Re: *** QUICK SAY RULES/(THINS) LIKE "SPAM" ***
Post by: UniQ 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.
Title: * * * * * AutoHotKey * * * * *
Post by: UniQ 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
Title: Re: * * * * * AutoHotKey * * * * *
Post by: Còól 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.
Title: Re: * * * * * AutoHotKey * * * * *
Post by: Tanxs1 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!
Title: Re: * * * * * AutoHotKey * * * * *
Post by: UniQ on April 06, 2011, 07:50:12 AM
Ah That's Poor.
You just can help me :P
Title: Re: *** QUICK SAY RULES/(THINS) LIKE "SPAM" ***
Post by: BFM_Thunder 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
Title: Re: * * * * * AutoHotKey * * * * *
Post by: BFM_RedFox on April 06, 2011, 10:50:15 AM
This (http://www.autohotkey.com/wiki/index.php?title=Main_Page) may help you.
Title: Re: * * * * * AutoHotKey * * * * *
Post by: MrMxyzptlk on April 06, 2011, 11:15:59 AM



Uniq: You already have a thread open on this topic (http://www.bfmracing.net/forums/index.php/topic,53893.0.html)....


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.