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}