Lindrian commented on mIRC Snippet: love script + gay script  -  Feb 18, 2007
And I dont see any usa of an INI file in a script like this, since ur just calculating how gay / in lvoe someone is.

And at the last line, or the last part of the script, ur missing an opening bracket at the if statment, and ofcourse an closing bracket
Lindrian commented on mIRC Snippet: simple away + huggle/trout saver  -  Feb 18, 2007
well, I cant stand. But ur deleting my comments, yet im trying to help you. I shuld shoot ymself. But ur still having the same problem with ur brackets, at line 12..ö.
Lindrian commented on mIRC Snippet: Youtube URL Catcher  -  Feb 18, 2007
You're welcome. And what you do is:
if ($1- !isin $read(yourtxtfile.txt,n,1)) {
The ! infront of isin, means if its not in the file, it'll add. just to give you a hint, u might be able to figure it out yourslef ;p.
And the $1- means the first word and the rest of the sentence.

Lindrian commented on mIRC Snippet: Youtube URL Catcher  -  Feb 18, 2007
Oh and btw, since u can edit comments (argh x.x) ill have to post a second one, well, why dont u make a if statement to check if the youtube file is NOT in the txt file, and it will add it. No need to have multiple urls right ;p?

And u know, u can use $fulldate instead of "YouTube window opened $day $+ , $date $+ , $time" etc.
Lindrian commented on mIRC Snippet: Youtube URL Catcher  -  Feb 18, 2007
I see, looks kinda usless to me, but someone might need it.
1) Whats with all the dots?
2) your missing () at the starting if statement. This one:
if %tube != on {
Lindrian commented on mIRC Snippet: love script + gay script  -  Feb 18, 2007
Imo, why not use var %gay = $rand(x,y)
and doubble check so u got all closing and opening brackets.
I found a few of them missing.
Lindrian commented on mIRC Snippet: admin/halfop/voice apply + uno killer V2  -  Feb 17, 2007
I see, you deleted all our comments, for helping you?
Lindrian commented on mIRC Snippet: User Help v3  -  Feb 16, 2007
"im not a "nerd" im a quarterback for putnum high so maybe you should back off"

I would see that as a 'threat'
Anyhow, no need to argue about that. Drop the subject and improve yuor code instead.
Lindrian commented on mIRC Snippet: User Help v3  -  Feb 16, 2007
Korvin, chill out and dont threat.
Lindrian commented on mIRC Snippet: Useful script  -  Feb 15, 2007
Not everyone is using the same script as you are using, since messes colours up. And most of the people here on hawkee rather keep it clean I suppose, or add their own colours.

Its highly annoying to get a script with colours, belive me. Im just telling you that.
Lindrian commented on mIRC Snippet: Useful script  -  Feb 15, 2007
A simple highlighter. I suppose thats good. Didnt test it, secondly, remove the colours please.
Lindrian commented on mIRC Snippet: /kb  -  Feb 14, 2007
as no_body said, might wanna make a if statement, like
if ($2 ison $chan) { etc
Lindrian commented on mIRC Snippet: another auto voice :o  -  Feb 14, 2007
Lindrian commented on mIRC Snippet: another auto voice :o  -  Feb 14, 2007
dide u make on like this already & posted it?
Lindrian commented on mIRC Snippet: Voice,Devoice,Op,Deop Msg's  -  Feb 14, 2007
Yes, kinda like this:
on *:rawmode:#: {
if (($1 == +q) && ($2 == $me)) {
;The +q for the identifer, if u get +o'ed intead, change the +q to +o etc..
;In rawmode u can get em all working. U can also change the $2 identifier
;to != $me (not equal you) and echo if thats what u want. etc..
;Suppose u already know that.
;Although, u might need to chang the +q to +qo in some networks etc.
msg $chan Thanks for the QOP $nick $+ !
echo -at > You got QOP'ed in $chan $+ !
;The -t switch gives you a time stamp, the -a switch echos in active window.
}
if (($1 == -q) && ($2 == $me)) {
msg $chan Why did u remove my QOP $nick $+ ?
echo -at > You got deqop'ed in $chan $+ !
}

;GL and HF!
}
Lindrian commented on mIRC Snippet: /kb  -  Feb 14, 2007
this is very... non usfull dude. 1/10 on that.
Lindrian commented on mIRC Snippet: Voice,Devoice,Op,Deop Msg's  -  Feb 13, 2007
U might wanna make a part for half op aswell, and if u use rawmode u can get +a(o) and +q(o) working aswell.
and no need for / infront of the echo.
Lindrian commented on mIRC Snippet: Brain damage calc(joke)  -  Feb 13, 2007
add a:
$nick has $rand(1,99) $+ %
Looks better.

Maybe add a delay?

set %delay [ $+ [ $nick ] ] 1
Like u know..

Lindrian commented on mIRC Snippet: Dice game  -  Feb 13, 2007
would be appriciated if the author himself tried it....
Lindrian commented on mIRC Snippet: Dice game  -  Feb 12, 2007
Although, since the trigget (text event) is set as !* it will trigger on all events made with ! in the channel, either change the main trigger or set it 1 specefic channel. and you could always add an help event,

on *:TEXT:!help:#: {
.notice $nick <how it goes>
}

Just to make it clear for the users ;p. So they wont ask you guys hehe.

have fun & i hope the script I made above works now.
Lindrian commented on mIRC Snippet: Dice game  -  Feb 12, 2007
Okay, I did some "fixes" dunno if it'll work, I made it quickly, u can test it yourself :p..

;-------------------------------------
;here it is:
on *:TEXT:!*:#:{
;i've set em all into 1 text event, looks better.
if ($2 == roll) && ($3 == on) {
if (%dice == on) {
.notice $nick 6 Game is already in progress.
goto end
;added an 'goto end' loop instead of halt.
}
if ($2 == roll) && ($3 == off) {
;the 2 statements in the if statement is due to the way i've set the text ;event up.
if (%dice == off) {
.notice $nick The game is already disabled.
goto end
}
else {
set %dice off
.notice $nick the game is now disabled.
goto end
}
else {
set %dicedplayer1 $nick
set %dice on
msg $chan 6 %dicedplayer1 has began the game and you have 30 seconds to write !join
.timer72 1 30 msg $chan 6SOrry, %dicedplayer1 nobody joined your game!
.timer73 1 30 unset %dice* | goto end
;i've also put . infront of timers & notices, to make them 'silent'.
}
}
elseif ($2 == join) {
if ($nick == %dicedplayer1) {
.notice $nick 6 You can`t play with yourself.
goto end
}
}
elseif (%dice == $null) {
.notice $nick 6 Game hasn`t been started yet! Type !dice to start the game.
goto end
}
else {
;added an else statement here and above, to make the event get executed.
.timer72 off
.timer73 off
goto next
:next
set %dicedplayer2 $nick
set %diceplayer1num $rand(1,6)
set %diceplayer2num $rand(1,6)
msg $chan 6 Game has been started...
msg $chan 6 $+ %dicedplayer1 $+ 's rolls ---> %diceplayer1num
msg $chan 6 $+ %dicedplayer2 $+ 's rolls ---> %diceplayer2num
}
if (%diceplayer1num > %diceplayer2num) {
msg $chan 4 $+ %dicedplayer1 won!
unset %dice*
goto end
}
if (%diceplayer1num < %diceplayer2num) {
msg $chan 4 $+ %dicedplayer2 won!
unset %dice*
goto end
;also added this line, so the player number 2 can win aswell.
}
if (%diceplayer1num == %diceplayer2num) {
msg $chan 6 It`s a tie. ROll again!
goto next
}
:end
;and here's the ending loop.
}
}

;----------------------------

Enjoy! And feel free to fix any of the bugs u might find! We're both here to learn after all!
Lindrian commented on mIRC Snippet: Dice game  -  Feb 12, 2007
I think the author needs to fix a few minor things, maybe a few more if, else, elseif statements where they're needed.
Lindrian commented on mIRC Snippet: LOVE METER(prank)  -  Feb 11, 2007
imcomplete imo, just says that theyre in love, doesnt even unset the variables so they'll be clean.. not good imo.
Lindrian commented on mIRC Snippet: Slap Protection  -  Feb 11, 2007
aint u missing a closing bracket? or are the colours messing it up?
Lindrian commented on mIRC Snippet: Whois System v1.0  -  Feb 11, 2007
Looks like u've forgot the closing bracket at raw 369-

And raw 406, does that acually work like that? if i would whois someone that hasnt been online for, lets say a week, will that pop up?

And what does raw 402 do??
Lindrian commented on mIRC Snippet: Risk Game  -  Feb 11, 2007
You acually should give the right credits to the people who helped you, imo.
Lindrian commented on mIRC Snippet: Translator Dialog  -  Feb 10, 2007
Okay, well u might wanna fix a few grammar problems, its "Translator" and secondly, u might wanna make the edit box a little bigger, so u can easier see what you write. a few more languages would be cool, otherwhize its fine.
Lindrian commented on mIRC Snippet: /dnd  -  Feb 10, 2007
i see totally no use for this script o.o; (And u might wanna say that it shall be posted into the aliases, and not remotes)
Lindrian commented on mIRC Snippet: Translator Dialog  -  Feb 10, 2007
Havent tried it, will do later, but I can tell you, remove all the /.
Lindrian commented on mIRC Snippet: Whois System v1.0  -  Feb 06, 2007
thats just terribly annoying and usless.
  1. Prev
  2. 14
  3. 15
  4. 16
  5. 17
  6. 18
  7. 19
  8. 20
  9. 21
  10. 22
  11. 23
  12. 24
  13. 25
  14. 26
  15. Next
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.