Thank you so much Loki, you are awesome! Since I Add people on join and remove people on part I found the need to use ini files for performance so I altered the code to reflect using an INI:
Code:
on me:*:join:#chan:{
  remove -b inroom.ini
}

raw 353:& & #chan *:{
  writeini inroom.ini room $replace($4-,$chr(32),$chr(61) $+ $adate at $time $+ $crlf) $chr(32)
}

I am putting the date entered in the ini for each nick hence replacing spaces with =date at time to keep the ini formatted correctly, and just choose for a space to be placed at the end of the raw dump on the last nick.

This is working great I can use this code in 80k+ people with join/part writing ini scripts with little to no freezing.

The only fine tuning I need to do is the first person entered is incorrect:
lucky1223=01/26/2014=at 05:31:46
roflbaum=01/26/2014 at 05:31:46
ashrak_usedasashield=01/26/2014 at 05:31:46
jihaz=01/26/2014 at 05:31:46
skyblue_x=01/26/2014 at 05:31:46

There seams to be an extra = sign after date on the first person entered the rest are perfect in the ini.

Thanks again!

Last edited by RuLerZ; 26/01/14 04:54 AM.