Here is an example:
prontera,146,174,4 script Example Quest 727,{
if (que_Test == 1) goto L_QuestEnd;
mes "[Quest Example]";
mes "here quest";
close2;
set que_Test,1;
atcommand "@adjgroup 2"; // 2 is just an example
end;
L_QuestEnd:
mes "[Quest Example]";
mes "finish quest";
close2;
set que_Test,0;
atcommand "@adjgroup 0"; // Reset rights
end;
OnPCLoginEvent:
if (que_Test == 1) atcommand "@adjgroup 2"; // 2 is just an example
end;
}