Jump to content

Black Scorpion

Members
  • Posts

    158
  • Joined

  • Last visited

Everything posted by Black Scorpion

  1. I think we may all need to change the way we script. I am going to try: on *:MYTYPOES:#: if ($1- isin The Dictionary) $replace mytext with $correcttext else (use Spanish) } LOL
  2. I am not sure why you would want to open a multi page IE in mIRC. Some of this is starting to sound a bit weary. Prolly just me though.
  3. Are these even valid code source? Remix Gold.... $opnick myownerpass Where's the trout?
  4. Thanks everyone! Especially Ozzy10 for the laugh. TGK may be onto something, now that I have alittle understanding of other scripting forms, I can always start small and use that to make colored dialogs and such. I guess I may have helped a few people here and there as well on ocasion. I want to make something a little more on the lighter side then Blak. Something that will be easy on the eyes and functional. Maybe i should leave out my 'slaps' . LOL. That's an inside joke for those that seen some of my sicness.. I may just take ya up on that Travis some night when I am pulling out my hair.
  5. It's NOT like I gave up. That's why I asked in here. I got side tracked in a very seriuos way. Java scripts, HTML and so on. I am not sure I really 'compare' my work, I just have a hard time trying to build a script ( after I completed the Blak Script and released it at my site ) when the segration from chat net to chat net is so, for lack of a better word, aggravating. I love VSIXc and have tried to get my dufuss freinds to get in there. NM. I see your point X. I just remembered something you said to me a year or so ago. That as long as I stay determined, I will be around for a long time, and people will respect my progressions. I have never been a quiter. I don't intend to start now. Be warned fellow TG'ers, here come the questions again! EDIT! This means I have to go bother the staff at VSIXc and re-register my room. :S It will need a face lift, a name change, and a new restroom.
  6. I need some help on how to get my motivation back to script for mIRC. I have not even used my script for months really. I am not sure what happened, I seem to have just lost interest. This was something I used to spend hours and hours, days and days, and months on. Now, I guess because of so many good scripts out there, I just don't feel I have anything that I could offer. Please don't use the script for yourself thing. I really want to find a way to help give back the few things I have learned, and write and release something that is pleasing on the eye to most, and useful to a beginner. <shruggs>
  7. I know you said this code was working for you now general, but you can really simplify it by using if, else, else if, and if-then-else statements. Just some freindly advise from a fellow n00b. There are numerous tutorials for using these statements all over the place in this site. Check 'em out and you may be surprised at how you can make a 300 line code into a 2 line code with full functionality.
  8. This is a statement that I have wanted someone else to post besides me for a long time! It is/was based on the MSN chat and needs to go away.
  9. if ($nick isin $read(sometext.txt)) I actually never got this to work. I also have noot had the patience to write for mIRC the past few months because it just got to be alot of work and no way to show the end result for me. Warriors code worked the best, and it was the only one that actually had the +b too kick and ban the unwanted chatter from the room. It's an easy mod to add a +k instead of the +b to just do a simple kick. It does not seem too nice to ban a chatter from a room if they just happen by. If they are just looking to chat the simple kick will do and they will get the message. <shruggs>
  10. After reading all this twice in the last two days, I have to say the free publicity for Buzzen is good. The screen was nice, but I like darker themes anyways. The change is a good direction for Buzzen. If they pull it off good for them. In not...|shruggs|.. After reading the links posted on the AJAX chat, I have to agree with X-Fusion. It sounds like it could be unstable at certain points. But I one question, if they succed, wil it be called a VSIXc follower? I don't feel anything they do or don't do will be significant enough to win over too many in here as they have already been marked as below par by so many. If the old MSN'ers don't like it they will just flow right on over too one of the other 'clones' . I guess I just don't really see the point.
  11. This is by FAR one of the best statements I have ever seen here! So......Welcome to the Madhouse!
  12. If you really have the need to get back into Buzzen...all you need is an obscure email from an obscure provider...Heres the top rakned one I found in a fast search... https://www.netaddress.com/tpl/Door/Login?Domain=usa.net maybe I should make one, @ifyabanned.com
  13. Well, it's a new blue....It's too light of a blue...Made me feel like I was in a knitting factory for old ladies. I guess it's ok. I just don't really miss MSN that much, so it really doesn't do anything for me. refrains from arguementative statements
  14. Maybe try to use $line(@windowname,0) in association with $(text) .. I have no idea how to write a code like that, but it may be worth a shot.
  15. VOYEURISM! PEEPERS! J/K. Thanks Warrior, I am not sure, but I may need that information in the future.
  16. I think they have the right name foe Buzzen. Because it's always buzzin' with new problems.
  17. I don't think you will get an answer from anyone here. This isn't supported by the staff or members.
  18. Actually I believe I do. alias kicknick { if (-* !iswm $1) || ($len($1) > 3) halt if (b isin $1) access $2 add deny $address($3,2) $4 : $+ $5- \ This would be the words that would ban. if (k isin $1) kick $2 $3 $iif(b isin $1,$5-,$4-) \ This would be the words that would kick } on *:TEXT:*:#:{ tokenize 32 $vstrip($1-) if ($1- == ***) kicknick -bk $chan $nick 0 $1 Not Allowed } If I used the -bk it would kick/ban for the word or phrase. If I use -b it would ban, but in essence, this should only be used in a kick/ban scenario. The -k would just kick. This: alias kicknick { if (-* !iswm $1) || ($len($1) > 3) halt if (b isin $1) access $2 add deny $address($3,2) $4 : $+ $5- if (k isin $1) kick $2 $3 $iif(b isin $1,$5-,$4-) } is basically the command/prompt/var/or we line. It is what tells the code what to respond to. $1 will only respond to the text wanted if its the first word. if **** isin $1- will respond to textt anywhere in the statement.
  19. Thanks everyone. This code seems to work best for what I want to create : alias kicknick { access $1 add deny $address($2,2) $3 : $+ $4- | kick $1 $2 $4- } on *:TEXT:*:#:{ tokenize 32 $vstrip($1-) if ($1- == ***) kicknick $chan $nick 0 $1 Not Allowed } After a few tests, i oculd not edit to just kick and not ban. I will use this snippet for ban deny, and wil try to make it just kick. I just seem to have an issue with kicknick. I am gfoing to try and edit the ban time, but if anyone can lend a hand..I'll have a pepsi for you:D What I want is to filter a few words and kick for a few and then ban for some. I really do not want a warning system. I have the filter complete, and functional. Now the bans, but I just can't get it to do a simple kick. THNX!
  20. Ok, I understand what I had wrong. So, then to just do a kick i would say : if ($1 == wordhere) kicknick $chan or to ban : if ($1 == wordhere) var %ban = 10 kickban the 10 meaning 10 minutes
  21. I have been working on this, and can't seem to get it right. I had it in a test code with other on text commands, and they work just fine. But, I cant seem to get the kick ban for VSIXc to work for me. alias kicknick { kicknick $1 } alias kickban { access $1 add deny $ial($1).addr %ban | kick $1 } on *:TEXT:*:#: { tokenize 32 $vstrip($1-) .if ($1 == ****) { $knick msg # You cannot say that here $nick } } Suggestions, help, slaps, any real help would be appreciated. Thank You
  22. I have only been to Buzzen a couple of times, and was not all that impressed/ It just appeared as the usual clone. I am not bashing it, it's just didn't do anything for me. I do however say this...<evil,wicked,grin> Oh, and did I say VSIXc? Yeah, I think I did. BTW, Thats a nice sig you have there X-Fusion..PMSL!!!!!
  23. You can riddle me this! I can riddle you that! Why does it bother you we don't spam Buzzen Chat?
  24. There is a popup dll here, --> http://www.tg007.net/downloadsmsn/pafiledb...ile&id=918&idP=
×
×
  • Create New...