Top

Bot Rating Script [FIXED]


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  5.7
Scores Submitted  3
Date Added  Apr 30, 2006
Last Updated  Nov 14, 2007
Tags  bot  calculations  channel  counter  script 
  Bookmark and Share

Introduction

This is a extremely simple script that can be used if you have a bot on a network. People can rate your bot on a scale of 1-10.

How Other people can use it:

!rate - Gives Instructions
!rate <#1-10> - Rate bot 1-10 (ten being highest in this case)
!botavg - Shows the average of your bot

Fixed it up a tad since I've excelled a bit since 2 years ago in MSL. Changed it to work with INI's which are faster and more organized. The script is now easier to read and more appealing to look at. Enjoy the 'improved' version of this.

Grab the Code

Comments

  (12)  RSS
Noutrious
Comments: 355
 
mIRC Snippet:  Bot Rating Script [FIXED]
Posted on May 1, 2006 5:01 am
In the usage lines you should put ; before the text, else the script will be damaged.
spitfire3292
Comments: 36
 
mIRC Snippet:  Bot Rating Script [FIXED]
Posted on May 1, 2006 3:12 pm
Thats why there is a line there. It separates the usage and credits from the actual code. Thanks for bringing that up so other people dont get confused.
Sasuke
Comments: 318
 
mIRC Snippet:  Bot Rating Script [FIXED]
Posted on May 4, 2006 8:20 pm
Could clean up the script. :/
Daveoh
Comments: 27
 
mIRC Snippet:  Bot Rating Script [FIXED]
Posted on May 5, 2006 8:08 am
Use /* at the start of that script and after the comments put */ anything within those is a comment
A few tips: all those / are annoying (for me atleast :P), you don't need them for commands in a script
Use ini files (/help /writeini), faster, much simpler (easier) and I love it
Sasuke
Comments: 318
 
mIRC Snippet:  Bot Rating Script [FIXED]
Posted on May 5, 2006 2:03 pm
>_> By cleaning the script, I meant, getting rid of the /'s, Daveoh.
spitfire3292
Comments: 36
 
mIRC Snippet:  Bot Rating Script [FIXED]
Posted on May 6, 2006 3:49 pm
I no sas...but i like them there for organization. dont ask lol its just the way i like it.

dave...thanks :D
ZabuzaMomochi
Comments: 186
 
mIRC Snippet:  Bot Rating Script [FIXED]
Posted on May 7, 2006 3:00 pm
Whats the point of this script? To load it into your remotes with a bot or...
spitfire3292
Comments: 36
 
mIRC Snippet:  Bot Rating Script [FIXED]
Posted on May 12, 2006 2:46 pm
yes...and you put it in remotes and people can rate your bot...thought i didnt have to explain it but o well there yah go
Acid-Religion
Comments: 62
 
mIRC Snippet:  Bot Rating Script [FIXED]
Posted on Sep 8, 2006 12:57 pm
You could use ini or hashtable instead of the variables and text file. But your idea is good, you should maybe add a comment system as well as the rating?
mountaindew
Comments: 1,645
 
mIRC Snippet:  Bot Rating Script [FIXED]
Posted on Nov 14, 2007 6:55 pm
a little advide:

for comments in a script, do
Code:

/*
the comments
that you
write in
the script
*/

OR
Code:

;The commants
;that you
;write in
;the script

also, when u do
Code:

  /if (!$2) { msg $chan Give my bot a rating 1-10 : 10 being the highest. To do so type !rate &#601;-10> }
  /elseif ($2) {

no need for elseif ($2), just else {
u also dont need the if !$read, jsut else
and u can use isnum to see if its a num 1-10
Code:

if ($2 isnum 1-10) {

also, as acid said, u should consider doing a hash table or an ini, but nice idea
spitfire3292
Comments: 36
 
mIRC Snippet:  Bot Rating Script [FIXED]
Posted on Nov 14, 2007 9:20 pm
mountaindew you do realize this was almost 2 years ago. I just began scripting lol. I think I'm a bit better at scripting now. If you reallly want me to rewrite it i will lol
mountaindew
Comments: 1,645
 
mIRC Snippet:  Bot Rating Script [FIXED]
Posted on Nov 14, 2007 9:59 pm
lol i didnt know it was two years ago, i probably have a lot of old snippets w/ silly stuff too

u dont have to change it, but just for reference, use .msg and .notice instead of halting :)

Please Register or Login to start posting comments.
Bottom