i notice when trying to print with a single color that is T0 it never loads the filament why?
i have added this to my G-code and it works for every filament but T0
{if previous_extruder==-1}
G1 Z0.28 F240
G92 E0
G1 Y10 E75 F1500 ; prime the nozzle
G92 E0
{endif}
I had the same problem.
Solved it.
Add at the end of Start G-code
{if has_wipe_tower==false and current_extruder==0}
------your loading code copied from Tool Change G-code (including initial reset of 3Dchameleon--------
{endif}
Add at the beginning of End G-code
{if has_wipe_tower==false and current_extruder==0}
-------your tip shaping and UNloading code copied from Tool Change G-code-------
{endif}
Single colors prints should use the normal printer's profile and not the 3DChameleon profile. Also, you need to manually load the filament all the way to the extruder, just like the 3DChameleon wasn't installed. You can use any of the extruders to do that, or you can even bypass the 3DChameleon altogether by inserting the filament in to the middle of the top of the Y adapter (using the bypass hole) to load the extruder directly.
Bill