Author Topic: Couple of Suggestions  (Read 2169 times)

Zakara

  • Beta Testers
  • Jr. Member
  • **
  • Posts: 91
    • View Profile
    • http://images.google.com/images?hl=en&client=firefox-a&rls=org.mozilla:en-GB:official&hs=elw&q=prince albert piercing&um=1&ie=UTF-8&sa=N&tab=wi
Couple of Suggestions
« Reply #15 on: October 28, 2008, 04:42:54 PM »
Taking some of my suggestions were you?? Just kidding... anyways nice to see there's active people on this project.

- Edited (Kat made me! ~ Hero
« Last Edit: October 29, 2008, 04:02:32 PM by Hero »
[!--quoteo(post=0:date=:name=John SHADOW T.)--][div class=\'quotetop\']QUOTE (John SHADOW T.)[/div][div class=\'quotemain\'][!--quotec--]Half Human; Half Shylaeran; All pride and wisdom.
Fierce in combat, Tame at heart;
Wise with words, Foolish with affection;
Strong as a bull, Weak as a rose;
Love a man, Hate his people;
Leave your kind, To never see again
The truth in his words,
Of Love and Beauty,
Of Affection and Lust,
Of Wisdom and Power,
Of Bravery and Foolishness.
That this woman, now tells his lesson, to those of young,
That not all, is forbidden, for he too,
Was all the same to me.[/quote]
Do not edit her signature anymore. You have all been warned. ~ArticWolve

Reason

  • Moderator
  • Full Member
  • *****
  • Posts: 193
    • View Profile
    • http://Rev77.net/FailBot/latest.zip
Couple of Suggestions
« Reply #16 on: October 29, 2008, 08:53:44 PM »
I have somewhat implemented 3
It is SCRIPTING support not PLUGIN support

Scripting it so much easier

For example instead of
Sub FB_Event_Load()

Its

Sub Event_Load()

And instead of
AddChat vbgreen, Message
its
AddChat Message (and will auto be gray) OR

addchat message, color

Also theres functions to get the Source of a site
so IN A SINCE its like stealthbot's scripting system, but i think Fail Bot's is WAY better even though i just started 3 days ago.

For example, to get a random number in stealthbot, u have to do

Randomize

RndNum = int(Rnd * 2)
Or something

while in fail bot,

RndNum = Roll("Highest Number")

And theres ur number.
If you don't specify one, 6 will be the default.

Also for a 50/50 chance you can do

Change = Flip()
and the bot will return 0 or 1
so in a since, Fail Bot has much more functionality. If you have any ideas for useful functions, just tell me.
Quote
04:37:18 PM | ?Swamp_Demon15@Azeroth? make me 1..?
04:37:28 PM | ?MikeA@Azeroth? can you code in VB6, lol?
04:37:47 PM | ?MikeA@Azeroth? And do you know how to have sex while hanging from your little toe?
04:38:01 PM | ?MikeA@Azeroth? If no to either, I'm sorry, we can't take you.
04:38:11 PM | ?MikeA@Azeroth? Joel taught us all the second one.

Hero

  • Administrator
  • Hero Member
  • *****
  • Posts: 502
    • View Profile
    • http://rev7.net
Couple of Suggestions
« Reply #17 on: October 30, 2008, 04:58:11 AM »
Add a thing like Fool Ops that basically does the command input for you:

Code: [Select]
Function Event_ParseCommand(Command, Rest, Username, Access, Inbot, Whispered)
    Select Case Command '// All command variables are lowercased
        Case "scriptver"
           If Access < 20 Then Exit Function
           Event_ParseCommand = "BlankScript Version: " & Ver
        Case "aboutscript"
            If Access < 50 Then Exit Function
            Event_ParseCommand = "BlankScript:  Blank Script file"
        Case Else
        'put as many cases as you need for this scripts commands

    End Select
End Function
Whatever value the function returns is what it outputs (Make sure it returns whispers and such)

I would advise adding a SCInet state changed event so you can do more complex requests using it:
Code: [Select]
Sub Event_scInet_StateChanged(State)

End Sub

Add Timer support like
Code: [Select]
Public myTimer
Const secsTillFire = 10
Set myTimer = CreateTimer("SubToFire", secsTillFire)
'// These properties have both let and get methods
myTimer.Enabled = Test '// timer is enabled by default after creation
myTimer.Interval = 35
If Test Then AddChat vbGreen, myTimer.TimeLeft & " " & myTimer.TimeWaiting

Add GUI support like Stealthbot 2.7
(This would be very complex)
Hero
AKA: HeroAssasin and Mike
- - - - -  - - -
Visit Clan R77
- - - - -  - - -
Please do not PM me with random questions. That is what I made these forums for.

Noob ~Vector

Zakara

  • Beta Testers
  • Jr. Member
  • **
  • Posts: 91
    • View Profile
    • http://images.google.com/images?hl=en&client=firefox-a&rls=org.mozilla:en-GB:official&hs=elw&q=prince albert piercing&um=1&ie=UTF-8&sa=N&tab=wi
Couple of Suggestions
« Reply #18 on: October 30, 2008, 07:50:33 AM »
What about a NUMERIC math function for those retards who suck at math?? And why not take the magic 8 ball script and just put it into Fail Bot? I also foresee warn and timeban (minuteban in NF) commands being added.
The warn command will NOT work like the SB plugin does. It will just record the warning and after a USER SPECIFIED AMOUNT, that person is A) Banned if the bot has Ops;  Access is removed; C) Squelched.
The Timeban command would work something like NF's Minuteban, where .Timeban USER MINUTES REASON instead of .Timeban USER SECONDS REASON for SB.
[!--quoteo(post=0:date=:name=John SHADOW T.)--][div class=\'quotetop\']QUOTE (John SHADOW T.)[/div][div class=\'quotemain\'][!--quotec--]Half Human; Half Shylaeran; All pride and wisdom.
Fierce in combat, Tame at heart;
Wise with words, Foolish with affection;
Strong as a bull, Weak as a rose;
Love a man, Hate his people;
Leave your kind, To never see again
The truth in his words,
Of Love and Beauty,
Of Affection and Lust,
Of Wisdom and Power,
Of Bravery and Foolishness.
That this woman, now tells his lesson, to those of young,
That not all, is forbidden, for he too,
Was all the same to me.[/quote]
Do not edit her signature anymore. You have all been warned. ~ArticWolve