can you paste the whole code here so that i can see what it actually does.
on *:START:{
window @Join
.titlebar @Join <<<< §òldìer >>>>
.echo @Join 1,1.4,4_8,8.4,4____.0,4<<<< §òldìer >>>>4,4____.8,8.4,4_
.echo @Join 1,1.
.echo @Join 1,1.8,8_4,4.8,8.1,8[=> Displays Nickname And GateKeeper Of Those Who Join Room <=]8,8.4,4.8,8_
.echo @Join 1,1.
.echo @Join 3[=> Displayed In Following Format: Date, Time, Nick & GateKeeper <=]
.echo @Join
window @Kicks
.titlebar @Kicks <<<< §òldìer >>>>
.echo @Kicks 1,1.4,4_8,8.4,4____.0,4<<<< §òldìer >>>>4,4____.8,8.4,4_
.echo @Kicks 1,1.
.echo @Kicks 1,1.8,8_4,4.8,8.1,8[=> Displays All Nicks And Gates Of Kickers and Kicked <=]8,8.4,4.8,8_
.echo @Kicks 1,1.
.echo @Kicks 7[=> Displayed In Following Format: Time, Date, Kicked Nick, Kicked By Nick, & GateKeeper <=]
.echo @Kicks
window @Part
.titlebar @Part <<<< §òldìer >>>>
.echo @Part 1,1.4,4_8,8.4,4____.0,4<<<< §òldìer >>>>4,4____.8,8.4,4_
.echo @Part 1,1.
.echo @Part 1,1.8,8_4,4.8,8.1,8[=> Displays Nickname And GateKeeper Of Those Who Depart Room <=]8,8_4,4.8,8.1,8
.echo @Part 1,1.
.echo @Part 7[=> Displayed In Following Format: Date, Time, Nick & GateKeeper <=]
.echo @Part
window @Knocks
.titlebar @Knocks <<<< §òldìer >>>>
.echo @Knocks 1,1.4,4_8,8.4,4____.0,4<<<< §òldìer >>>>4,4____.8,8.4,4_
.echo @Knocks 1,1.
.echo @Knocks 1,1.8,8_4,4.8,8.1,8[=> Displays Knocks Too Room <=]8,8_4,4.8,8.1,8
.echo @Knocks 1,1.
.echo @Knocks 8[=> Displayed In Following Format: Decoded(Nick), Unicode(Nick), GateKeeper <=]
.echo @Knocks
on *:JOIN:* {
window @Join
echo @Join 0,12Joined: ( $+ $fulldate $+ ) $msn.decode($nick) $+ 7 $+ ! $+ 15 $+ $address
;write c:\Program Files\GuarDDog5\gklog.txt Joined $fulldate $msn.decode($nick) $+ * $+ ! $+ * $+ $address
halt
}
on *:KICK:* {
window @Kicks
if ($me !isin $nick) {
echo @Kicks 4[15 $time 4] 4[15 $msn.ifdecode $knick $address($knick,1) 4]
echo @Kicks 1,1[ $time ]4 4[15 Kicked On $fulldate 4]
echo @Kicks 1,1[ $time ]4 4[15 By $msn.ifdecode $nick $address($nick,1) 4]
;write c:\Program Files\GuarDDog5\kick.txt $fulldate $msn.ifdecode $knick $address($knick,1) Kicked By $msn.ifdecode $nick $address($nick,1)
return
}
elseif ($me isin $nick) {
}
echo @Kicks 15[15 $time 15] 15[4 You Kicked 15]
echo @Kicks 1,1[ $time ]4 15[4 $msn.ifdecode $knick $address($knick,1) 15]
echo @Kicks 1,1[ $time ]4 15[4 $+ $fulldate $+ 15]
;write c:\Program Files\GuarDDog5\kick.txt $fulldate You Kicked $msn.ifdecode $knick $address($knick,1)
halt
}
Here is the whole code up to the writing of the onjoin and kicks logging to the notepad. The "parts" and "knocks" r the same thing for the write command so i didnt include those to keep it
short. The write commands are iggied right now since they are not working right because this file called Programs that it created was messing up my email A\V protection. My GD5 Folder is in my program files folder in my c drive and it has all the latest updates. Someone suggested using $scriptdir\gklog.txt which i did try but that didn't work. It's almost like it is not reading "Program Files" as a folder but creating a file named Programs and logging the info there.