13 lines
259 B
Plaintext
13 lines
259 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC;
|
||
|
int iCamp;
|
||
|
string sZone;
|
||
|
|
||
|
oPC = GetPCSpeaker();
|
||
|
iCamp =GetLocalInt(oPC,"QuestCamp");
|
||
|
sZone =GetLocalString(oPC,"QuestCampzone");
|
||
|
|
||
|
SendMessageToPC(oPC,"Error: Quest Campsite is in Zone " + sZone + " at Camp " + IntToString(iCamp));
|
||
|
}
|