Jump to content

Haggis

Members
  • Posts

    400
  • Joined

  • Last visited

Everything posted by Haggis

  1. you can make mirc read text from a webpage http://mircscripts.org/downloads/sockets[05-24].zip you will have to copy and paste the link into ur browser
  2. Not much done just added Hard drive and memory bars
  3. yeah i was just using the dllto grab icons from windows until i make icons for it
  4. Yeah am prob gonna ditch the mp3 player and stick with my old one lol The fonts are only on input i though about addingh html chat screen so i could do them on text aswell might try that sometime i have almost finished the control dialog now
  5. Update here is all the dialogs now
  6. Am getting right back into scripting now lol still got a few probs wi whisper box but i think i am getting it
  7. Updated: Added Whisper Dialogs (BIG BIG HELP FROM err0r AND Ozzy10) made a Auto Join Added my MP3 Player SCRIPT SCREENSHOT
  8. Nice err0r av never used a lagbar
  9. Updated: It will distinguish between Male, Female, No Profile, mirc, Away, Ignore It will display each icons respectivly if on ignore it will also block text from the person
  10. Use /who u wil see the difference
  11. Latest now tells diff between male, female, no profle and mirc
  12. I fell so small lol i just finished my nicklist Screnshot
  13. its not the point i said i would fix it when i got back Xchat Font Stripper
  14. The Whisper bit was fixed on mine just not released and seph i dont see what the need for that post was lol expect an update in the code in thr next few days
  15. Well this has really annoyed me Not important taking it no sysops use it The qwhisper thing there was nothing wrong with that and lastly i said i would fix this when i got back but no someon has to do ti first the first script i write for xchat while learning perl and someone goes and changes it for me CHEERS
  16. There was a few bugs i fixed like when someone whispered it echoed in main screen instead of whisper i also added it so that it strips the fonts off whispers # *********************************************** # # Xchat Font Stripper for Chats USA # # Coded by Haggis # # 3rd April '05 # # http://www.haggistech.co.uk # # Version 1.1 # *********************************************** # Xchat::register("Split font","0."); Xchat::print("Stripper Loaded\n"); Xchat::print("http://www.haggistech.co.uk\n"); IRC::add_message_handler("PRIVMSG", "say"); sub say { my ( $Nick ) = Xchat::get_info ( 'nick' ); my $line = shift; if($line =~ m/CUSA/) { my $namehost, $prvmsg, $to, $font, $msg, $msg2, $font2; ($namehost, $prvmsg, $to, $font, $msg) = split(/ /, $line, 5); ($name, $host) = split(/!/, $namehost); ($font2, $msg2) = split(/:/,$msg,2); $name =~ s/://; $msg =~ s/://; if($to =~ $Nick) { IRC::command("/query $name"); #make a tab Xchat::print("$name\cC: $msg2", $name, $serv); return Xchat::EAT_XCHAT; }else{ Xchat::emit_print("Private Message to Dialog", $name, $msg2); return Xchat::EAT_XCHAT; } } return Xchat::EAT_NONE; } enjoy
  17. ok found a flaw when ur in a whisper if u go to main scren it will echo whispers there so am workig on that the now am not gonna code a stripper for whispers yet and i dont whisper so dont need it lol
  18. Yay am so chuffed i managed it lol
  19. Here it is the font stripper for xchat (linux cersion i dunno if it will work on windows) just paste this code into a text pad and save it as file.pl save it to the .xchat2 directory and then reopen xchat this will autoload it # *********************************************** # # Xchat Font Stripper for Chats USA # # Coded by Haggis # # 3rd April '05 # # http://www.haggistech.co.uk # # *********************************************** # Xchat::register("Split font","0."); Xchat::print("Stripper Loaded\n"); Xchat::print("http://www.haggistech.co.uk\n"); IRC::add_message_handler("PRIVMSG", "say"); sub say { my $line = shift; if($line =~ m/CUSA/) { my $namehost, $prvmsg, $to, $font, $msg, $msg2, $font2; ($namehost, $prvmsg, $to, $font, $msg) = split(/ /, $line, 5); ($name, $host) = split(/!/, $namehost); ($font2, $msg2) = split(/:/,$msg,2); $name =~ s/://; $msg =~ s/://; Xchat::emit_print("Private Message to Dialog", $name, $msg2); return Xchat::EAT_XCHAT; } return Xchat::EAT_NONE; } i know this is gonna get ripped by some but ach if ur that sad what can ya do lol any problems let me know
  20. Haggis

    IE 7

    i know some dont have the experience but the peole that do can fix stuff they can also add to it aswell lol it just seems to be the way that people dont want to attack linux
  21. Haggis

    IE 7

    being open source means that anyone can get at the code to fix bugs etc etc who was linux developed by ..... it was developed by hackers not very many people want to hack or destroy somerthing that THEY can have a part in building
×
×
  • Create New...