mIRC Snippet:
Profile Wizard(c) vol.2
Posted on May 8, 2008 11:44 am
Posted on May 8, 2008 11:44 am
I figured out how to get the `DOB to work: when entering the info type it as: day-month-year not day/month/year.
I just need to figure out how to get the bot to do it without it showing in all channels.
thank you for such a wonderful script.
I just need to figure out how to get the bot to do it without it showing in all channels.
thank you for such a wonderful script.
mIRC Snippet:
Profile Wizard(c) vol.2
Posted on May 7, 2008 8:45 pm
Posted on May 7, 2008 8:45 pm
I have one issue with this script and that is that it will not accept the `DOB as it is typed: ie: 03/05/68 or 03/may/1968 or 03/may/68
It says to type it: day/month/year and I have tried 3/may/68 and 03/may/68 and 3/may/1968 and 3/5/1968.
Please tell me what I am doing wrong.
It says to type it: day/month/year and I have tried 3/may/68 and 03/may/68 and 3/may/1968 and 3/5/1968.
Please tell me what I am doing wrong.
mIRC Snippet:
Profile Wizard(c) vol.2
Posted on Jan 26, 2008 11:06 am
Posted on Jan 26, 2008 11:06 am
well you can do /writeini -n
but it would be a lot better to use a hash table if you're going to have that many profiles
but it would be a lot better to use a hash table if you're going to have that many profiles
mIRC Snippet:
ProfFileWizard vol. 2
Posted on Jan 26, 2008 10:20 am
Posted on Jan 26, 2008 10:20 am
As an ini file can max out and become 'full', is there a way to have this write to a text file so it will hold unlimited profiles??
mIRC Snippet:
Profile Wizard(c) vol.2
Posted on Jan 26, 2008 10:06 am
Posted on Jan 26, 2008 10:06 am
As an ini file can max out and become 'full', is there a way to have this write to a text file so it will hold unlimited profiles??
mIRC Snippet:
Joined but not stayed for 60 seconds? Out!
Posted on Dec 9, 2007 11:27 am
Posted on Dec 9, 2007 11:27 am
I'm not really in to these kind of things, but the code needs a lot of improvements and I don't think anyone else has stepped up to the plate yet:
I'd use $wildsite preferably as they could easily change nicks and comeback. And you should change the set %joined [ $+ [ $nick ] ] to unset %joined [ $+ [ $nick ] ] as your variables would flood out easily. Also, your /chan alias won't work because you are setting %chan to $2 instead of $1. And if we don't specify $2, then who nothing will work. Your /chanoff alias, your /echo command should be %chan and not chan. You could also receive an error message if you are not an op in %chan, so please provide error checking and clean up the code. Finally, please learn how to use if then else statements. /help $wildsite and /help if then else 2/10 really.
I'd use $wildsite preferably as they could easily change nicks and comeback. And you should change the set %joined [ $+ [ $nick ] ] to unset %joined [ $+ [ $nick ] ] as your variables would flood out easily. Also, your /chan alias won't work because you are setting %chan to $2 instead of $1. And if we don't specify $2, then who nothing will work. Your /chanoff alias, your /echo command should be %chan and not chan. You could also receive an error message if you are not an op in %chan, so please provide error checking and clean up the code. Finally, please learn how to use if then else statements. /help $wildsite and /help if then else 2/10 really.
mIRC Snippet:
Joined but not stayed for 60 seconds? Out!
Posted on Dec 9, 2007 5:47 am
Posted on Dec 9, 2007 5:47 am
Well, it has stupid coding - whats the just of kick switch in ban command, when its being used in PART action? Goddamit, think with brain.
mIRC Snippet:
Joined but not stayed for 60 seconds? Out!
Posted on Dec 5, 2007 4:42 am
Posted on Dec 5, 2007 4:42 am
nice little script. functional and useful. very close in operation and code to mine and i had to check for a moment lol... but i use wildsite alot. dont ask why, i know alot of people shun it's use.
as for the ban. i see you have used the kick ban. not needed. all you need is a simple " ban -u600 or what ever " not the "ban -ku300 or whatever" once they are banned and out the channel, the ban prevents them from coming back anyway until the timer expires.
one thing i had forgot in mine which you have got right though is the protect check. you could also use the isop check to protect any ops in channel from pings or accidental closures. maybe edit to check for that? what you think
as for the ban. i see you have used the kick ban. not needed. all you need is a simple " ban -u600 or what ever " not the "ban -ku300 or whatever" once they are banned and out the channel, the ban prevents them from coming back anyway until the timer expires.
one thing i had forgot in mine which you have got right though is the protect check. you could also use the isop check to protect any ops in channel from pings or accidental closures. maybe edit to check for that? what you think
mIRC Snippet:
Joined but not stayed for 60 seconds? Out!
Posted on Dec 4, 2007 5:26 pm
Posted on Dec 4, 2007 5:26 pm
well guys, i dont think it deserves a 1/10 :/
mIRC Snippet:
Joined but not stayed for 60 seconds? Out!
Posted on Dec 3, 2007 9:20 am
Posted on Dec 3, 2007 9:20 am
sry about the [c] and [/c]
mIRC Snippet:
Joined but not stayed for 60 seconds? Out!
Posted on Dec 3, 2007 9:18 am
Posted on Dec 3, 2007 9:18 am
you can do this :
[c] alias chan {
if ($1 == $null) { echo Specify the channel you want the Joiner Protector to work at! | halt }
if (%chan != $null) { /set %chan $addtok(%chan,,44) $+ , $+ $1 | %finish = $input(Channel $1 Added!,68) }
else { /set %chan $1 | %finish = $input(Channel $1 Added!,68) }
echo Joiner protector will work in $1 $+ !
}
[/c]
[c] alias chan {
if ($1 == $null) { echo Specify the channel you want the Joiner Protector to work at! | halt }
if (%chan != $null) { /set %chan $addtok(%chan,,44) $+ , $+ $1 | %finish = $input(Channel $1 Added!,68) }
else { /set %chan $1 | %finish = $input(Channel $1 Added!,68) }
echo Joiner protector will work in $1 $+ !
}
[/c]
mIRC Snippet:
Joined but not stayed for 60 seconds? Out!
Posted on Dec 3, 2007 9:01 am
Posted on Dec 3, 2007 9:01 am
What do you think about it??? :)
mIRC Snippet:
ProfFileWizard vol. 2
Posted on Jul 7, 2007 3:31 am
Posted on Jul 7, 2007 3:31 am
Oh sorry tired didnt see it -_-
mIRC Snippet:
ProfFileWizard vol. 2
Posted on Jul 7, 2007 3:30 am
Posted on Jul 7, 2007 3:30 am
Good job But maybe you should add a `view nickname So other people could view it :/ 5/10
mIRC Snippet:
Search www.download.com and cnet
Posted on Jun 18, 2007 1:09 pm
Posted on Jun 18, 2007 1:09 pm
LOL, thats a crap, it isn't even useful, You should use sockets to get info out of it, not some plain link!
mIRC Snippet:
Search www.download.com and cnet
Posted on Jun 18, 2007 12:26 pm
Posted on Jun 18, 2007 12:26 pm
guys! come on! only 2? something more?!
mIRC Snippet:
FoodBarManiac v2.0 ***Second Update***
Posted on Jun 17, 2007 5:23 pm
Posted on Jun 17, 2007 5:23 pm
ok so im gonna update it again.. i will start scripting it tomorrow and i think by tomorrow you wil have the update. there is gonna be acounter and im thinking to put up a system that you will need to pay for the drinks or food. But... I dont want to put a casino cause its kinda boring.. Any suggestions???
mIRC Snippet:
Profile Wizard(c) vol.2
Posted on Jun 17, 2007 2:00 pm
Posted on Jun 17, 2007 2:00 pm
http://www.hawkee.com/snippet/2225/
Already posted - You don't need to repost it only cuz it has 2.0 as score.
Already posted - You don't need to repost it only cuz it has 2.0 as score.
mIRC Snippet:
ProfFileWizard vol. 2
Posted on Jun 17, 2007 12:48 pm
Posted on Jun 17, 2007 12:48 pm
Hey guys! SO here is y new snippet! I hope you like it! For any bugs, problems contact me here in the comments bar! Also if you have any suggesitons on how I can improve it please tell me! Er.. anyway.. that's for now.. So.. ENJOY!








