It does not work. ![]()
Custom Computer
AMD Athlon 64 x2 Dual Core 5200+
Asus M2N-SLI MOB
2GB DDR2 @ 800mhz
160GB Hard Drive
NVidia GeForce 8400GS 256
It does not work. ![]()
Custom Computer
AMD Athlon 64 x2 Dual Core 5200+
Asus M2N-SLI MOB
2GB DDR2 @ 800mhz
160GB Hard Drive
NVidia GeForce 8400GS 256
download and try again. should work.. works for me as you can see in the screenshot.
Well I just downloaded it again and got the same result.

Custom Computer
AMD Athlon 64 x2 Dual Core 5200+
Asus M2N-SLI MOB
2GB DDR2 @ 800mhz
160GB Hard Drive
NVidia GeForce 8400GS 256
EDIT:
You need the ocxless that can be found in Gate's room creator, and some vinculas.Maybe have this with the download? just a though.
Custom Computer
AMD Athlon 64 x2 Dual Core 5200+
Asus M2N-SLI MOB
2GB DDR2 @ 800mhz
160GB Hard Drive
NVidia GeForce 8400GS 256
yea, i included it in my addon cause i know that not a lot of users have it. Even if it doubles up, i still think it should be part of every addon that is made as an addon that requires the use of connecting to MSN. But it isn't our part, TG's part, to add it in, but it's the creator/moders part to do this.
i get this msg
* /dll: unable to open 'C:\Documents and Settings\N\Desktop\My Script\Cold_Stalker\cs.dlls\csumx.dll' (line 148, coldstalker.mrc)
-
* /hdel: no such table 'cstalker' (line 103, coldstalker.mrc)
i am connected and this is what i get
You need this. Add this to new remote.
alias mh.calc {
if (*:GKSSP* iswm $1-) {
var %x, %re = .*:GKSSP\\0.*\\0\\0.*\\0\\0(.*), %y = $regsub($1-,%re,,%x)
tokenize 32 $regml(1)
}
var %m
bset &h1 1 101 100 112 123 125 101 124 119 120 114 100 115 101 125 125 117 $str(54 $+ $chr(32),48) $mh.tobin($1-)
bset &h2 1 15 14 26 17 23 15 22 29 18 24 14 25 15 23 23 31 $str(92 $+ $chr(32),48) $mh.hex2bin($md5(&h1,1))
return $+(:GKSSP\0\0\0,$chr(2),\0\0\0,$chr(3),\0\0\0,$mh.unhex($md5(&h2,1)))
}
alias mh.tobin {
var %l 1, %r
while (%l <= $len($1)) {
if ($mid($1,%l,1) == \) {
inc %l
if ($mid($1,%l,1) == 0) %r = %r 0
elseif ($mid($1,%l,1) == t) %r = %r 9
elseif ($mid($1,%l,1) == n) %r = %r 10
elseif ($mid($1,%l,1) == r) %r = %r 13
elseif ($mid($1,%l,1) == b) %r = %r 32
elseif ($mid($1,%l,1) == c) %r = %r 44
elseif ($mid($1,%l,1) == \) %r = %r 92
}
else %r = %r $asc($mid($1,%l,1))
inc %l
}
return %r
}
alias mh.hex2bin {
var %l 1, %r
while (%l <= $len($1)) {
%r = %r $base($mid($1,%l,2),16,10)
inc %l 2
}
return %r
}
alias mh.unhex {
var %l 1, %r, %x $remove($1-,$chr(32))
while (%l <= $len(%x)) {
if ($mid(%x,%l,2) == 00) %r = %r $+ \0
elseif ($mid(%x,%l,2) == 0A) %r = %r $+ \n
elseif ($mid(%x,%l,2) == 0D) %r = %r $+ \r
elseif ($mid(%x,%l,2) == 2C) %r = %r $+ \c
elseif ($mid(%x,%l,2) == 09) %r = %r $+ \t
elseif ($mid(%x,%l,2) == 5C) %r = %r $+ \\
elseif ($mid(%x,%l,2) == 20) %r = %r $+ \b
else %r = %r $+ $chr($base($mid(%x,%l,2),16,10))
inc %l 2
}
return %r
}
Custom Computer
AMD Athlon 64 x2 Dual Core 5200+
Asus M2N-SLI MOB
2GB DDR2 @ 800mhz
160GB Hard Drive
NVidia GeForce 8400GS 256
You need this. Add this to new remote.
alias mh.calc { if (*:GKSSP* iswm $1-) { var %x, %re = .*:GKSSP\\0.*\\0\\0.*\\0\\0(.*), %y = $regsub($1-,%re,,%x) tokenize 32 $regml(1) } var %m bset &h1 1 101 100 112 123 125 101 124 119 120 114 100 115 101 125 125 117 $str(54 $+ $chr(32),48) $mh.tobin($1-) bset &h2 1 15 14 26 17 23 15 22 29 18 24 14 25 15 23 23 31 $str(92 $+ $chr(32),48) $mh.hex2bin($md5(&h1,1)) return $+(:GKSSP\0\0\0,$chr(2),\0\0\0,$chr(3),\0\0\0,$mh.unhex($md5(&h2,1))) } alias mh.tobin { var %l 1, %r while (%l <= $len($1)) { if ($mid($1,%l,1) == \) { inc %l if ($mid($1,%l,1) == 0) %r = %r 0 elseif ($mid($1,%l,1) == t) %r = %r 9 elseif ($mid($1,%l,1) == n) %r = %r 10 elseif ($mid($1,%l,1) == r) %r = %r 13 elseif ($mid($1,%l,1) == b) %r = %r 32 elseif ($mid($1,%l,1) == c) %r = %r 44 elseif ($mid($1,%l,1) == \) %r = %r 92 } else %r = %r $asc($mid($1,%l,1)) inc %l } return %r } alias mh.hex2bin { var %l 1, %r while (%l <= $len($1)) { %r = %r $base($mid($1,%l,2),16,10) inc %l 2 } return %r } alias mh.unhex { var %l 1, %r, %x $remove($1-,$chr(32)) while (%l <= $len(%x)) { if ($mid(%x,%l,2) == 00) %r = %r $+ \0 elseif ($mid(%x,%l,2) == 0A) %r = %r $+ \n elseif ($mid(%x,%l,2) == 0D) %r = %r $+ \r elseif ($mid(%x,%l,2) == 2C) %r = %r $+ \c elseif ($mid(%x,%l,2) == 09) %r = %r $+ \t elseif ($mid(%x,%l,2) == 5C) %r = %r $+ \\ elseif ($mid(%x,%l,2) == 20) %r = %r $+ \b else %r = %r $+ $chr($base($mid(%x,%l,2),16,10)) inc %l 2 } return %r }
Molson so by adding this code in vincula somewhere or in a new remote, the cold stalker will then work? because i got the same problem as you. ill try it when i get back home from work, ty.
Thank you Molson. works now
Sign in to reply or start a new topic where your account has permission.