dlsocool

dlsocool

Joined
Jul 16, 2010

Activity Stream

dlsocool commented on a Page, Random Fake CTCP version Reply  -  Nov 24, 2011

d3oneGeneral,

on :connect: {
.ignore -tw
<------------------ make sure you set this? t = ctcp, w = makes the ignore apply to any network.
.debug -i debugoutput fakectcp
}

 Respond  
dlsocool commented on a Page, Trial reset  -  Feb 21, 2011

Yap! :-)

 Respond  
dlsocool commented on a mIRC Script, imgmirc v0.26s  -  Jan 03, 2011

WOW! I had v.0.27 compatible with mirc 6.35 :)
and how to down load v0.28 ?

 Respond  
dlsocool commented on a Page, calc  -  Dec 01, 2010

hahaha ^_^

 Respond  
dlsocool commented on a Page, Blacklist  -  Dec 01, 2010
alias -l purge {
  var %x = 1
  while ($nick($active,%x)) {
    var %z = 1
    while ($read(Blacklist.txt,%z)) {
      if ($address($nick($active,%x),1) == $read(Blacklist.txt,%z)) {
        mode $active +b $address($nick($active,%x),1)
        kick $active $nick($active,%x) 07B14lacklisted
        inc %z
      }
      else {
        inc %z
      }
    }
    inc %x
  }
}

This loop would be slower. If user in channel is more than 300...

 Respond  
dlsocool commented on a Page, Trial reset  -  Dec 01, 2010

Hey when i posted to my facebook it fatal error:

Fatal error: Uncaught exception 'FacebookRestClientException' with message 'Updating status requires the extended permission status_update' in /home/hawkee/public_html/phpBB2/includes/facebookapi_php5_restlib.php:2457 Stack trace: #0 /home/hawkee/public_html/phpBB2/includes/facebookapi_php5_restlib.php(1315): FacebookRestClient->call_method('facebook.users....', Array) #1 /home/hawkee/public_html/phpBB2/includes/fbauth.php(86): FacebookRestClient->users_setStatus('Commented on mI...', '100000046560481') #2 /home/hawkee/public_html/profile/comments.php(94): send_fbupdate('Commented on mI...') #3 {main} thrown in /home/hawkee/public_html/phpBB2/includes/facebookapi_php5_restlib.php on line 2457
 Respond  
dlsocool commented on a Page, Trial reset  -  Dec 01, 2010

ok, thanks alot Spoofings for this snippet :)
I'm using mirc 6.35
BUt i'd used mirc 7.15 in utf-8 character set in the Thai language
it's can not connect to server >>> "Illegal character" why not? and how to fix it?

someone can helpme?

 Respond  
dlsocool commented on a Page, Trial reset  -  Dec 01, 2010

ok, thanks alot Spoofings for this snippet :)
I'm using mirc 6.35
BUt i'd used mirc 7.15 in utf-8 character set in the Thai language
it's can not connect to server >>> "Illegal character" why not? and how to fix it?

someone can helpme?

 Respond  
dlsocool commented on a Page, mIRC Control Codes to HTML  -  Dec 01, 2010

If you are used while loop you needed to input inc %i see this code fallowing:

alias mirccc2html {
  var %stdin = $+($replace($mid($1,$calc($pos($1,:,2) + 1)),$chr(32),$lf),$chr(15)), %stdout, %LF = 0, %i = 1, %len = $len(%stdin)
  while (%i <= %len) {
    var %char = $mid(%stdin,%i,1), %i = %i + 1
    if (%char == $lf) var %LF = %LF + 1, %stdout = $+(%stdout,$iif(2 // %LF,&nbsp;,$lf))
    elseif (%char == $chr(2)) var %^B = $iif(%^B,$false,$true), %stdout = $+(%stdout,$iif(%^B,<b>,</b>))
    elseif (%char == $chr(29)) var %^I = $iif(%^I,$false,$true), %stdout = $+(%stdout,$iif(%^I,<i>,</i>))
    elseif (%char == $chr(31)) var %^U = $iif(%^U,$false,$true), %stdout = $+(%stdout,$iif(%^U,<u>,</u>))
    elseif (%char == $chr(22)) var %^R = $iif(%^R,$false,$true), %stdout = $+(%stdout,$iif(%^R,<span class="R">,</span>))
    elseif (%char == $chr(3)) {
      if (%^K) var %^K = $false, %stdout = $+(%stdout,</span>), %color, %background-color
      if ($mid(%stdin,%i,1) isnum) var %color = $base($v1,10,10,2), %i = %i + 1
      if ($mid(%stdin,%i,1) isnum) var %color = $base($+(%color,$v1),10,10,2), %i = %i + 1
      if ($mid(%stdin,%i,1) == ,) {
        var %i = %i + 1
        if ($mid(%stdin,%i,1) isnum) var %background-color = $base($v1,10,10,2), %i = %i + 1
        if ($mid(%stdin,%i,1) isnum) var %background-color = $base($+(%background-color,$v1),10,10,2), %i = %i + 1
      }
      if (%color) var %^K = $true, %stdout = $+(%stdout,<span class=" $+ $+(K,%color,%background-color) $+ ">)
    }
    elseif (%char == $chr(15)) {
      if (%^B) var %^B = $false, %stdout = $+(%stdout,</b>)
      if (%^I) var %^I = $false, %stdout = $+(%stdout,</i>)
      if (%^U) var %^U = $false, %stdout = $+(%stdout,</u>)
      if (%^R) var %^R = $false, %stdout = $+(%stdout,</span>)
      if (%^K) var %^K = $false, %stdout = $+(%stdout,</span>), %color, %background-color
    }
    else {
      var %LF = 0
      if (%char == &) var %stdout = $+(%stdout,&amp;)
      elseif (%char == <) var %stdout = $+(%stdout,&lt;)
      elseif (%char == >) var %stdout = $+(%stdout,&gt;)
      else var %stdout = $+(%stdout,%char)
    }
    inc %i
  }
  return $replace(%stdout,$lf,$chr(32))
}

if you forget this (inc %i) this script will have problem.

 Respond  
dlsocool commented on a Page, letter to number converter  -  Jul 16, 2010

WOW! It's be nice, but how to creat a number to letter?
How can I creates code to convert a number to letter character, well.

 Respond  
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.