The following should be typed in your CLUAConsole bar with your cursor on the character you want to have the romance with.
1) To activate a romance:
CLUAConsole:SetGlobal("
charnameRomance","Global",1);
2) To find out what stage it is at:
CLUAConsole:GetGlobal("LoveTalk","Locals");
3) This will give you a number. To progress the romance, you need to increase this number (by 2 or so) using the following command:
CLUAConsole:SetGlobal("LoveTalk","Locals",
x);
where
x is the number you are setting it to. Then, to initiate dialogue right after you increae the number:
4) CLUAConsole:SetGlobal("
charnameRomance","Global",1);
The NPC should then initiate dialogue. To get to the next dialogue, just do steps 3 and 4 again, increasing by 2 each time.
------------------