Jump to content

Jagie

Members
  • Posts

    95
  • Joined

  • Last visited

Posts posted by Jagie

  1. Go in to Appdata/Local/Microsoft and do you see the Windows Live Contacts folder?

     

    Delete that, then open MSN and try logging in.

     

    I had a similar problem, and that did the trick :) Don't worry, no contacts disappear or anything, so even if it gets deleted and it still does'nt work, nothing happens to msn.

  2. I wasnt actually referring to MSN Chat, I was on about another chatroom that has slowly broken up and died over the past years. We had known each other for years over the net, playing games doing all sorts.

     

    But eventually it has closed.

     

    Just kinda upset it has, and now I have no real use of IRC. I just idle in other chatrooms like Buzzen etc, dont talk or anything. Cause I dont find it interesting. :(

     

    Ah well. I guess its time to move on :(

  3. Glad to know that others feel the same. I mean buzzen is great because of the large amounts of people. But the scripting rooms are usually dead, no-one ever talks, and when you go into the #espressobar its just like 400 lines a minute, and seems like no-one even cares what you say or even notices it because theres so many random conversations going in.

     

    So pretty much all it was, was idling in chat rooms.

     

    Meh, I wish IRC was back to the old days, i miss it :(

  4. Have you ever thought of quitting IRC?

     

    I recently had a really good chatroom slowly fade away. We had been friends for years (2-3), constantly talking etc, and slowly people started to leave, we had to move servers and now it just seems really dead with no-one left.

     

    I tried to get back into Buzzen and stuff, yet there is no more enjoyment, it feels more of a task

     

    I kinda do not want to let go of IRC, but I have no use for it anymore and no-one to actually talk to. :(

     

    Has anyone else felt like this?

  5. Hey I recently found this script:

     

     

     

    ;Twitter Channel by Ford_Lawnmower irc.mindforge.org #USA-Chat
    menu * {
      .Twitter Channel
      ..$iif($timer(mIRCTwitter),Off,On): { 
        if ($timer(mIRCTwitter)) { .timermIRCTwitter off }
        else {
          mIRCTwitter
          .timermIRCTwitter -o 0 $iif($hget(mIRCTwitter,Delay),$hget(mIRCTwitter,Delay),60) mIRCTwitter 
        }
      }
      ..SetUp
      ...Set UserName and Password:TwitterAuthCheck $+($$?="Enter your Username",:,$$?*="Enter your Password")
      ...Set Delay:hadd -m mIRCTwitter Delay $iif($$?="Enter Delay in Seconds" > 29,$!,60) | mtsave
      ...Set Method of Output
      ....Bot Message(.msg #Channel):hadd mIRCTwitter Method $network .msg $$?="Enter the Channel Name including the #prefix" | mtsave
      ....Message(msg #Channel):hadd mIRCTwitter Method $network msg $$?="Enter the Channel Name including the #prefix" | mtsave
      ....Echo(Echo -at):hadd mIRCTwitter Method echo -at | mtsave
      ....Window(Echo -t @Twitter):hadd mIRCTwitter Method echo -t @Twitter | mtsave
    }
    alias -l mIRCTwitter { 
      if ($hget(mIRCTwitter,Active)) { GetmIRCTwitter $v1 $gettok($decode($v1,m),1,58) }
      else {
        .timermIRCTwitter off
        echo -a Error!! No UserName:Password Data. Please return to the menu and setup the script properly
      }
    }
    alias -l GetmIRCTwitter {
      var %sockname $+(mIRCTwitter,$network,$2,$ticks)
      sockopen %sockname twitter.com 80
      sockmark %sockname $+(/statuses/home_timeline/,$2,.rss?since_id=,$iif($hget(mirctwitter,last_id),$hget(mirctwitter,last_id),1),&count=50) $1 0 1 0
    }
    On *:sockopen:mIRCTwitter*: {
      if (!$sockerr) {
        sockwrite -nt $sockname GET $gettok($sock($sockname).mark,1,32) HTTP/1.0
        sockwrite -n $sockname Host: twitter.com
        sockwrite -nt $sockname Authorization: Basic $gettok($sock($sockname).mark,2,32)
        sockwrite -n $sockname $str($crlf,2)
      }
      else { echo -st Socket Error $nopath($script) | sockclose $sockname | return }
    }
    On *:sockread:mIRCTwitter*: {
      if ($sockerr) { echo -st Socket Error $nopath($script) | sockclose $sockname | return }
      else {
        var %mIRCTwitter | sockread %mIRCTwitter
        if (<item> isin %mIRCTwitter) { sockmark $sockname $puttok($sock($sockname).mark,1,3,32) }
        elseif ($gettok($sock($sockname).mark,4,32)) && ($regex(%mIRCTwitter,//([^/]*)</guid>/)) {
          hadd mIRCTwitter Last_ID $regml(1)
          sockmark $sockname $puttok($sock($sockname).mark,0,4,32)      
        }
        elseif ($gettok($sock($sockname).mark,3,32)) && ($regex(%mIRCTwitter,<title>(.*)</title>)) {
          sockmark $sockname $puttok($sock($sockname).mark,$calc($gettok($sock($sockname).mark,5,32) + 1),5,32)
          var %Method $hget(mIRCTwitter,Method)
          if (%Method == echo -at) { %Method $fix($+(09<07,$gettok($regml(1),1,58),09>04) $gettok($regml(1),2-,58)) }
          elseif ($me ison $gettok(%Method,3,32)) {
            .timer 1 $gettok($sock($sockname).mark,5,32) $gettok(%Method,2-,32) $fix($+(09<07,$gettok($regml(1),1,58),09>04) $gettok($regml(1),2-,58))
          }
          else {
            if (!$window(@Twitter)) { window -E @Twitter }
            var %NextTweet $fix($+(09<07,$gettok($regml(1),1,58),09>04) $gettok($regml(1),2-,58)) 02,08[04RT02]
            echo -t @Twitter %NextTweet
            if ($istok(%NextTweet,%MyTwitterName,32)) {
              if (!$window(%MyTwitterName)) { window -E %MyTwitterName }
              echo -t %MyTwitterName %NextTweet
            }
          }
        }
      }
    }
    alias -l urlencode return $regsubex($1-,/([^a-z0-9])/ig,$+(%,$base($asc(\t),10,16,2)))
    alias -l TwitterAuthCheck {
      var %sockname $+(mTwitterAuthCheck,$network,$2,$ticks)
      sockopen %sockname twitter.com 80
      sockmark %sockname /account/verify_credentials.xml $encode($1,m)
    }
    On *:sockopen:mTwitterAuthCheck*: {
      if (!$sockerr) {
        sockwrite -nt $sockname GET $gettok($sock($sockname).mark,1,32) HTTP/1.0
        sockwrite -n $sockname Host: twitter.com
        sockwrite -n $sockname Authorization: Basic $gettok($sock($sockname).mark,2,32)
        sockwrite -n $sockname $crlf
      }
      else { echo -st Socket Error $nopath($script) | sockclose $sockname | return }
    }
    On *:sockread:mTwitterAuthCheck*: {
      if ($sockerr) { echo -st Socket Error $nopath($script) | sockclose $sockname | return }
      else {
        var %mTwitterAuthCheck | sockread %mTwitterAuthCheck
        if (HTTP/1.1 401 Unauthorized isin %mTwitterAuthCheck) { 
          echo -a Incorrect UserName:Password Combination!! Please Try Again with the Correct Information.
          sockclose $sockname
          return
        }
        elseif ($regex(%mTwitterAuthCheck,/<name>(.*)</name>/)) { 
          echo -a $regml(1) Your Account has been Verified and Your Information has been Stored in my Secure Encrypted Database.
          hadd -m mIRCTwitter Active $gettok($sock($sockname).mark,2,32)
          set %MyTwitterName $+(@,$gettok($decode($hget(mIRCTwitter,Active),m),1,58))
          mtsave
          sockclose $sockname
        }
      }
    }
    alias -l mIRCTweet {
      if ($hget(mIRCTwitter,Active)) { mTwitterUpdate $v1 echo -a $1- }
    }
    ;mTwitterUpdate mimeEncodedAuth method place UnEncodedUpdate
    alias -l mTwitterUpdate {
      var %sockname $+(mTwitterUpdate,$network,$2,$ticks)
      sockopen %sockname twitter.com 80
      sockmark %sockname $2-3 /statuses/update.xml $1 $+(status=,$urlencode($left($4-,140)))
    }
    On *:sockopen:mTwitterUpdate*: {
      if (!$sockerr) {
        sockwrite -nt $sockname POST $gettok($sock($sockname).mark,3,32) HTTP/1.1
        sockwrite -n $sockname Host: twitter.com
        sockwrite -nt $sockname Authorization: Basic $gettok($sock($sockname).mark,4,32)
        sockwrite -n $sockname Content-Type: application/x-www-form-urlencoded
        sockwrite -n $sockname Content-Length: $len($gettok($sock($sockname).mark,5,32))
        sockwrite -n $sockname $crlf
        sockwrite -nt $sockname $gettok($sock($sockname).mark,5,32)
        sockwrite -n $sockname $crlf
      }
      else { echo -st Socket Error $nopath($script) | sockclose $sockname | return }
    }
    On *:sockread:mTwitterUpdate*: {
      if ($sockerr) { echo -st Socket Error $nopath($script) | sockclose $sockname | return }
      else {
        var %mTwitterUpdate | sockread %mTwitterUpdate
        if (HTTP/1.1 401 isin %mTwitterUpdate) { 
          $gettok($sock($sockname).mark,1-2,32) Username/Password Incorrect. Please message me to properly setup your account.
        }
        elseif (HTTP/1.1 502 isin %mTwitterUpdate) || (HTTP/1.1 503 isin %TwitterUpvar) {
          $gettok($sock($sockname).mark,1-2,32) Servers are Busy. Please try again Later.
        }
        elseif (HTTP/1.1 500 isin %mTwitterUpdate) { $gettok($sock($sockname).mark,1-2,32) Internal Server Error. }
        elseif (HTTP/1.1 403 isin %mTwitterUpdate) { $gettok($sock($sockname).mark,1-2,32) Connection was actively refused. }
        elseif (HTTP/1.1 400 isin %mTwitterUpdate) { $gettok($sock($sockname).mark,1-2,32) Unknown Error }
        elseif (HTTP/1.1 200 isin %mTwitterUpdate) { $gettok($sock($sockname).mark,1-2,32) Updating Status.. Please Wait... }
        elseif (</status> isin %mTwitterUpdate) { .timer 1 3 $gettok($sock($sockname).mark,1-2,32) Status Updated. }   
      }
    }
    On *:input:@Twitter,%MyTwitterName: {
      if ($left($1,1) != /) {
        haltdef
        echo -t $active $+(07<09,$mid(%MyTwitterName,2-),07>09) $1-
        mIRCTweet $1-
      }
    }
    alias -l fix { return $replace($regsubex($1-,/\&\#([0-9]{1,});/g,$utf8(\t)),",",&,&,>,>,<,<,',',|,,$chr(9),$chr(32)) }
    alias -l UTF8 {
      if ($1 < 255) { return $chr($1) }
      if ($1 >= 256) && ($1 < 2048) { return $+($chr($calc(192 + $div($1,64))),$chr($calc(128 + $mod($1,64)))) }
      if ($1 >= 2048) && ($1 < 65536) { return $+($chr($calc(224 + $div($1,4096))),$chr($calc(128 + $mod($div($1,64),64))),$chr($calc(128 + $mod($1,64)))) }
      if ($1 >= 65536) && ($1 < 2097152) {
        return $+($chr($calc(240 + $div($1,262144))),$chr($calc(128 + $mod($div($1,4096),64))),$chr($calc(128 + $mod($div($1,64),64))),$&
          $chr($calc(128 + $mod($1,64))))
      }
    }
    alias -l div { return $int($calc($1 / $2)) }
    alias -l mod {
      var %int $int($calc($1 / $2))
      return $calc($1 - (%int * $2))
    }
    alias -l H2U { return $utf8($base($1,16,10)) }
    alias -l mtsave {
      .timermIRCTwitter -o 0 $iif($hget(mIRCTwitter,Delay),$hget(mIRCTwitter,Delay),60) mIRCTwitter
      if ($hget(mIRCTwitter)) { hsave mIRCTwitter mIRCTwitter.hsh }
    }
    on ^$*:HOTLINK:/^<([^<>]*)>/S:@Twitter,%MyTwitterName:{
      if ($1) { return }
      halt
    }
    on ^$*:HOTLINK:/^\[RT\]/S:@Twitter,%MyTwitterName:{
      if ($1) { return }
      halt
    }
    on $*:HOTLINK:/^<([^<>]*)>/S:@Twitter,%MyTwitterName:{
      if ($mouse.key) { editbox $active $+(@,$strip($regml(1))) }
      halt
    }
    on $*:HOTLINK:/^\[RT\]/S:@Twitter,%MyTwitterName:{
      if ($mouse.key) {
        noop $regex($hotline,/<([^<>]*)>(.*)\[RT\]/S)
        editbox $active RT $strip($+(@,$regml(1)) $regml(2)) 
      }
      halt
    }
    On *:Start: {
      hmake mIRCTwitter 1
      if ($isfile(mIRCTwitter.hsh)) { hload mIRCTwitter mIRCTwitter.hsh | mtsave }
    }
    On *:Unload: {
      if ($hget(mIRCTwitter)) { hfree mIRCTwitter }
      if ($isfile(mIRCTwitter.hsh)) { .remove mIRCTwitter.hsh }
      unset %MyTwitterName
    }

     

     

     

     

    Would it be possible for someone to make it so when you do like "@Last" It will message out the last tweet from the account that was made :)

     

    Thanks to whoever can do it! :)

     

    Jagie/PowerZ

     

  6. Hey Nathan!

     

    Yeah Webchat is looking good guys, Not many bugs left!

     

    I myself am very impressed in how the site has developed in just the last say 2 weeks? It has grown and improved massively.

     

    I hope to see more people from TG007 in ChatCore :) It would be nice!

     

     

    [Jagie] - [PowerZ]

  7. Yeah it does work, but im trying to find out how to change the icons for different signs like

     

    ~ - Icon1

    & - icon2

    @ - icon3

    %- icon4

    + - icon5

     

    Obviously not the real names of the icons, but trying to find out how to make it like that, so i can set the icons for each access :P

  8. Hey :) That works great, Perfect for my nicklist manager dialog.

     

    Also yes, if you do have the full nicklist.dll with the actual coding and stuff and works on like normal servers could you like just post it :) Thanks

  9. err0r, I know about nicklist.dll Im just not really good at that level of coding lol! :)

     

    Well that works great Silo :) Brilliant job, but is it possible to make it so it refreshes automatically? Is that possible ^ :) and when you scroll down and it is auto refreshing it doesnt go all the way back to the top.

     

    I really like nicklist.dll, I just cant seem to get one working for normal IRCD even that one that you posted err0r in downloads, i cant get it too change the icons to a certain one user access so like @ - Gold hammer and % - Brown hammer - & - Silver hammer and ~ Blue hammer etc :P

     

    Thanks Silo, Im going to probably use that for a nicklist manager dialog :P Just trying to find out how to change the icon thing in nicklist.dll

     

    Thanks all! :)

  10. Hey I need some help for a nicklist! :)

     

    Well, I really wanted a nicklist.dll one type , with the icons etc, and like the one in err0rs All'n'one script, but that is far out of my league.

     

    I saw this post on a topic, i think its by err0r with this code.

    dialog centerd {
      title "Center Dialog"
      size -1 -1 171 163
      option dbu
      list 1, 102 9 60 134, size
      button "Refresh List", 2, 103 145 58 12
    }
    on *:dialog:centerd:init:*: { getnames $active }
    on *:Dialog:centerd:sclick:1: { echo -a $did(1).seltext }
    on *:Dialog:centerd:sclick:2: { getnames $active }
    alias getnames {
      did -r centerd 1
      var %l 1
      while ($nick($1,%l)) {
        did -a centerd 1 $v1
        inc %l
      }
    }

     

    That is a great piece of code. Is their a way to make it so it include the signs like "@" "~" "%" "+" of the different types of access they have.

     

    Also how can I make it so it auto refreshes without it like being laggy or something. Is their a way to make it auto refresh smoothly and not see like flashes etc.

     

    Any help/examples of past nicklists you have created or anything would be great! :)

     

    Thanks

     

  11. If anyone has a invitation they could send me for spotify if they have premium :) Please let me know, or send me the invitation at jagie_15 @ hotmail.com (delete spaces!) :)

     

    Would be much appreciated!

×
×
  • Create New...