Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Zakara

Pages: 1 2 [3] 4 5
31
VectorNet / VectorNet suggestions
« on: January 14, 2009, 05:23:30 AM »
Quote from: ~Shadow~
Suggestion: Make the flood out customizable and have the plugin queue the send to server messages for a split second.
Flood out should be based upon the following:
Number of messages sent per time elapsed (messages per time in seconds);
Number of connections (connections per time in seconds);
Penalty: Customizeable, warning, kick, time ban, four hour suspension, ban (That order for my server  ) --Server keeps track of how many times you "flooded" or "spammed"

More to come at another time!

I kind of agree. Flood settings should be server specific, not global, along with a tickbox that says: "Enable Flood Protection?". Also, is there anyway to make the packets part of the server, so that when a user connects (example), it [the server] sends the packet. The connection deciphers the packet and then proceeds via the packets' instructions. This way, a noob like bob will not be able to "fake" a disconnect. Just wondering if it is possible, and yes, I am aware of the major overhaul it would impose.

Also, is there the possibility of games on vectornet? Like Uno, Guess the word, Rummy, Spades... etc so that we draw in more users instead of just a chat oriented program?

Edited it back. -Shadow.
Stop calling people nooobs or I am not going to give you moderator positions on the new site - Mike

32
VectorNet / Regarding the last releases
« on: January 14, 2009, 05:18:10 AM »
I sure hope so. I want this to turn out great!

33
VectorNet / Regarding Current Server Version
« on: January 14, 2009, 05:17:51 AM »
One: John, use Spellcheck; Two: The kick everyone glitch tends to happen when a new user on Failbot or the VN Client joins, but very rarely though.

34
VectorNet / [Resolved] Found Bug
« on: January 14, 2009, 05:16:14 AM »
Has the new client been released then? If not, then no, it is not resolved.

35
VectorNet / Private VN Server Hosting
« on: January 14, 2009, 05:15:36 AM »
You mean "WE" are hosting a private VN Server. It is open to members of R77 and NVO respectively. If you want your clan on it, then please ask one of us VIA this thread or by PM.

36
VectorNet / Progress report
« on: January 14, 2009, 05:13:45 AM »
Your bans do not work. I banned an IP this morning, and it banned me instead......

37
VectorNet Bot / Features?
« on: January 14, 2009, 05:11:19 AM »
You should really get rid of the older topics from the view of the public. They can be annoying at times. Also, I would say that this is a great step forward for Rev77 and its members.

38
Shadow Chat / A New Battle Net Bot
« on: January 14, 2009, 04:59:50 AM »
About time you decided to make your own. Was wondering when you would post about it.

39
News / Vent Server Details
« on: December 20, 2008, 05:43:38 AM »
hahaha...... I have a teamspeak as well. I don't like Ventrillo.

40
StealthBot / Stealthbot 2.7
« on: December 20, 2008, 05:36:14 AM »
Neither does it work in DR 23.

41
New User Introductions / Hello
« on: December 18, 2008, 03:44:06 PM »
Programming, scripting, having fun?

42
Advanced Moderation / If you haven't already.
« on: December 18, 2008, 03:43:13 PM »
Of course you would not. You never do!

43
Bot Development / New JBLS
« on: December 18, 2008, 03:42:25 PM »
You set up a BNLS server? Lol @ John. And I did not even notice.

44
Requests / External Mail
« on: December 18, 2008, 03:37:20 PM »
Sorry to bug you guys again, but seeing as I am banned from Stealth Bot.net or rather will be if I log onto my account there, I had to post here. I would like a Script/Plugin to be made so that anyone with the correct clan tag(s) (User defined) can use the .sendmail, .notice, and .checkmail commands.



Commands:
Requires only the Clan's Tag (Not War3 Tag Mind You)

.Sendmail <User> Message
Sends User the Message. Can be used only once every 45 seconds. All commands are then queued to prevent flooding the bot out. Checks if User contains a clan tag; If so, removes the tag and then sends the message to a data file for future retrieval. If not, bot just sends it to the data file.

.Checkmail
Bot gives you the mail. Can be used only once every 45 seconds. All commands are then queued to prevent flooding the bot out If no Mail, then bot whispers: "You have no mail."
Basically this command checks a file to see if the User has mail or not.

.Notice <On/Off>
Toggles whether the bot tells you that you have mail or not. IE Bot does not notify that you you have Mail when you enter.

.Announce <All/Group>
90 Access
Sends a message to everyone or specific Tag.

.WaitTime <2 to 5 seconds>
90 Access
Changes the time between 2 and 5 seconds. Cannot be less then 2 and not greater then 5. This also affects the time the script responds that the user has mail. IE This SETTING affects everything: Command Response Time; Notifications; Confirmations ETC...

Ideally this will check the clan's site daily (around 2AM EST) and then update a file that contains all the "Clan Members". Also, this script will act something like the delay greet by Hero. If the user leaves the channel after only a few seconds, then it does not tell him he has mail on the bot. So basically, it checks for two things: 1) If the user is on a list; 2) If the user has recently left the channel. If you want to do this, I will have to give you the site it has to parse/check for the user information.

45
Completed / MBCC
« on: December 08, 2008, 07:01:14 PM »
Not really a Public Command, but it found its way in there!
 
 
Code: [Select]
'MBCC
 '1.1
 '& Mirage Bot Clan Commands:Zakara; Updated by Sarah
 
 Sub MBCC_Event_Load()
 
   AddChat VBYellow, "[MBCC] ", VBPink, "Zakara and Sarah's ", VBYellow, "Mirage Bot Clan Commands"
   TimerEnabled "MBCC", "Wait", False
   TimeInterval "MBCC", "Wait", 60
 
 End Sub
 
 Sub MBCC_Event_USertalk(USername, Flags, Message, Ping)
 
   GetDBEntry Username, Access, Flags
 
   If LCase(Message) = BotVars.Trigger & LCase("Cpub") Then
     If Access < 90 Then Exit Sub
     If MBCCStop > 0 Then Exit sub
     MBCCStop = MBCCStop + 1
     Command BotVars.Username, "/clan public", True
   End If
 
   If LCase(Message) = BotVars.Trigger & LCase("Cpriv") Then
     If Access < 90 Then Exit Sub
     If MBCCStop > 0 Then Exit sub
     MBCCStop = MBCCStop + 1
     Command BotVars.Username, "/clan private", True
   End If
  
 End Sub
 
 Sub MBCC_Wait_Timer()
 
   MBCCStop = 0
  
 End Sub

Pages: 1 2 [3] 4 5