59 lines
2.9 KiB
Plaintext
59 lines
2.9 KiB
Plaintext
|
void main()
|
||
|
{
|
||
|
object oConstable = GetObjectByTag("ConstableDhampir");
|
||
|
object oPC = GetItemActivator();
|
||
|
string strloc1 = GetLocalString(oConstable, "strCQloc1");
|
||
|
string strloc2 = GetLocalString(oConstable, "strCQloc2");
|
||
|
string strloc3 = GetLocalString(oConstable, "strCQloc3");
|
||
|
string strloc4 = GetLocalString(oConstable, "strCQloc4");
|
||
|
|
||
|
FloatingTextStringOnCreature("By Order of King Rould, the following villians have been found guilty of henious crimes against the citizens of Aikolund. They are hereby sentenced to death to be carried out by the deputized posses of the Leistran Constable.", oPC);
|
||
|
|
||
|
if (GetLocalInt(oConstable, "cq_mob1") == 1)
|
||
|
{DelayCommand(1.0, FloatingTextStringOnCreature("Fugitive: Ambrose White", oPC));}
|
||
|
if (GetLocalInt(oConstable, "cq_mob1") == 2)
|
||
|
{DelayCommand(1.0, FloatingTextStringOnCreature("Fugitive: Henamin Fourst", oPC));}
|
||
|
if (GetLocalInt(oConstable, "cq_mob1") == 3)
|
||
|
{DelayCommand(1.0, FloatingTextStringOnCreature("Fugitive: Makmal Iriad", oPC));}
|
||
|
if (GetLocalInt(oConstable, "cq_mob1") == 4)
|
||
|
{DelayCommand(1.0, FloatingTextStringOnCreature("Fugitive: Wenrea Trumble", oPC));}
|
||
|
|
||
|
DelayCommand(1.5, FloatingTextStringOnCreature(strloc1, oPC));
|
||
|
|
||
|
|
||
|
if (GetLocalInt(oConstable, "cq_mob2") == 1)
|
||
|
{DelayCommand(2.0, FloatingTextStringOnCreature("Fugitive: Urbal Wordo", oPC));}
|
||
|
if (GetLocalInt(oConstable, "cq_mob2") == 2)
|
||
|
{DelayCommand(2.0, FloatingTextStringOnCreature("Fugitive: Crick Tobai", oPC));}
|
||
|
if (GetLocalInt(oConstable, "cq_mob2") == 3)
|
||
|
{DelayCommand(2.0, FloatingTextStringOnCreature("Fugitive: Mortegue The Bloody", oPC));}
|
||
|
if (GetLocalInt(oConstable, "cq_mob2") == 4)
|
||
|
{DelayCommand(2.0, FloatingTextStringOnCreature("Fugitive: Lowell Pender", oPC));}
|
||
|
|
||
|
DelayCommand(2.5, FloatingTextStringOnCreature(strloc2, oPC));
|
||
|
|
||
|
|
||
|
if (GetLocalInt(oConstable, "cq_mob3") == 1)
|
||
|
{DelayCommand(3.0, FloatingTextStringOnCreature("Fugitive: Joshuay Ewell", oPC));}
|
||
|
if (GetLocalInt(oConstable, "cq_mob3") == 2)
|
||
|
{DelayCommand(3.0, FloatingTextStringOnCreature("Fugitive: Lorn Kalo", oPC));}
|
||
|
if (GetLocalInt(oConstable, "cq_mob3") == 3)
|
||
|
{DelayCommand(3.0, FloatingTextStringOnCreature("Fugitive: Almar the Black", oPC));}
|
||
|
if (GetLocalInt(oConstable, "cq_mob3") == 4)
|
||
|
{DelayCommand(3.0, FloatingTextStringOnCreature("Fugitive: Piestas the Foul", oPC));}
|
||
|
|
||
|
DelayCommand(3.5, FloatingTextStringOnCreature(strloc3, oPC));
|
||
|
|
||
|
|
||
|
if (GetLocalInt(oConstable, "cq_mob4") == 1)
|
||
|
{DelayCommand(4.0, FloatingTextStringOnCreature("Fugitive: Madam Quisoc", oPC));}
|
||
|
if (GetLocalInt(oConstable, "cq_mob4") == 2)
|
||
|
{DelayCommand(4.0, FloatingTextStringOnCreature("Fugitive: Heinrok Schvester", oPC));}
|
||
|
if (GetLocalInt(oConstable, "cq_mob4") == 3)
|
||
|
{DelayCommand(4.0, FloatingTextStringOnCreature("Fugitive: Kalon BrackFord", oPC));}
|
||
|
if (GetLocalInt(oConstable, "cq_mob4") == 4)
|
||
|
{DelayCommand(4.0, FloatingTextStringOnCreature("Fugitive: Tojor the Knife", oPC));}
|
||
|
|
||
|
DelayCommand(4.5, FloatingTextStringOnCreature(strloc4, oPC));
|
||
|
}
|