Hello. Can someone help me duplicated ROTD for information purposes? I want to put ROTD in every town, but the problem is, when I try to duplicated the whole ROTD Script, it makes another ROTD on my server, not a duplicated from the first one, so 2 RUNNING ROTD Scripts. I want it to only duplicate the ROTD Information, not the whole script.
I want the duplicate NPC to show the ROTD Information only, no GM Menu.
I tried this script:
prontera,151,95,6 script ROTD#test 436,{
switch(select("^4EEE94ROTD Information^000000: Close")){
case 1:
mes "^FF0000ROTD^000000 refer to ^0000FFRace of the Day^000000";
mes "In another word, it mean that the ^FF0000Monster's Race^000000 that you killed by day will grant you ^FF0000Bonus EXP^000000.";
next;
mes "[ ^FF0000Today's ROTD^000000 ]";
mes "^0000FF"+.rotd$[.today_rotd]+"^000000 Race";
break;
default: close;
}
end;
OnInit:
waitingroom "[ Race of the Day ]",0;
end;
}
But doesnt display the ROTD Race. HELP PLEASE!