Top

Comments

  (18)  RSS
spongescripter's
F*U*R*B*Y*
Comments: 586
 
mIRC Snippet:  Commands for a Bot
Posted on Oct 1, 2008 12:29 pm
therefore not ripped...... different....
Bullet_Dodger
Comments: 212
 
mIRC Snippet:  Commands for a Bot
Posted on Oct 1, 2008 12:24 pm
Yes that was because she/he edited it
F*U*R*B*Y*
Comments: 586
 
mIRC Snippet:  Commands for a Bot
Posted on Oct 1, 2008 12:23 pm
no its different..... look at the on text event.... its done by levels, not by a nick being set by a variable
Bullet_Dodger
Comments: 212
 
mIRC Snippet:  Commands for a Bot
Posted on Oct 1, 2008 12:21 pm
Nvm
spongescripter
Comments: 7
 
mIRC Snippet:  Advanced Craps Game (Incomplete)
Posted on May 5, 2008 7:35 am
the way that the game checks, no one other than the players can use the commands
criminal
Comments: 122
 
mIRC Snippet:  Advanced Craps Game (Incomplete)
Posted on May 3, 2008 5:17 pm
And where's the game itself?
I only see the start of it.
Maybe add a @ or a % before the * in the On *:TEXT: event?
if everyone can use it, believe me, you'll get spammed.
so add a flood too
spongescripter
Comments: 7
 
mIRC Snippet:  Advanced Craps Game (Incomplete)
Posted on May 3, 2008 10:57 am
i posted it incomplete so i can see wat it looks like in the actual mIRC..

i didnt download IRC to this computer.. thats y i didnt test it....
^Neptune
Comments: 375
 
mIRC Snippet:  Advanced Craps Game (Incomplete)
Posted on May 2, 2008 3:52 pm
why post an incomplete script?
EL
Comments: 1,406
 
mIRC Snippet:  Advanced Craps Game (Incomplete)
Posted on May 2, 2008 2:09 pm
llol wat dude your lucky to get error comments ffs not hard to delete comments wich im sure you ll delete mine but oh well and he is rite why would u post a incomplete code ffs an its errorous?..called testing friend try it an wait till its ''complete'' before you post its better for the testers to test as a whole.`-.-´
spongescripter
Comments: 7
 
mIRC Snippet:  Advanced Craps Game (Incomplete)
Posted on May 2, 2008 1:49 pm
Please try to not comment multiple times.. keep all the "errors" in one comment plz & thnx
jonesy44
Comments: 1,094
 
mIRC Snippet:  Advanced Craps Game (Incomplete)
Posted on May 2, 2008 1:19 pm
error #1:

set %dicegameowner $nick

should be

set %dicegameowner $me
jonesy44
Comments: 1,094
 
mIRC Snippet:  Advanced Craps Game (Incomplete)
Posted on May 2, 2008 1:18 pm
Quote:
Your snippet will be deleted if you break any of the following rules:

* Snippet MUST WORK


Quote:
Advanced Craps Game (Incomplete)


:s
spongescripter
Comments: 7
 
mIRC Snippet:  Advanced Craps Game (Incomplete)
Posted on May 2, 2008 1:00 pm
i didnt mean to triple post.. i clicked the button multiple times because it was moving slow.
Xpl0reR
Comments: 113
 
mIRC Snippet:  Advanced Craps Game (Incomplete)
Posted on May 2, 2008 11:57 am
Die Tripple Poster !!!
spongescripter
Comments: 7
 
mIRC Snippet:  Commands for a Bot
Posted on Apr 18, 2008 1:02 pm
wow... cant believe i missed that.. -.-
napa182
Comments: 1,155
 
mIRC Snippet:  Commands for a Bot
Posted on Mar 5, 2008 12:56 am
spongescripter you are missing a closing bracket on the level 500 user group.
spongescripter
Comments: 7
 
mIRC Snippet:  Commands for a Bot
Posted on Jan 23, 2008 12:00 pm
thnx.. i think i get wat u sayin..
mountaindew
Comments: 1,651
 
mIRC Snippet:  Commands for a Bot
Posted on Jan 7, 2008 3:27 pm
this could be easily simplified
Code:

on @*:text:*:#:{
  if ($level($nick) >= 500) {
    ;commands only lvl 500 can do
  }
  if ($level($nick) > 400) {
    ;commands only lvl 400 can do
  }
  if ($level($nick) > 300) {
    ;rest of commands
  }
}
Bottom