okay, now i don't get why it's saything this ->
#include "inc_gsystem_evnt"
void main()
{
PGSModuleClientEnterEvent (GetEnteringObject());
object oPC = GetEnteringObject();
object oNoobArmor;
oNoobArmor = GetTag("travelrobe");
if (!GetIsPC(oPC)) return;
int DoOnce = GetLocalInt(oPC, GetTag(OBJECT_SELF));
if (DoOnce==TRUE) return;
SetLocalInt(oPC, GetTag(OBJECT_SELF), TRUE);
GiveGoldToCreature(oPC, 1000);
CreateItemOnObject("travelrobe", oPC);
AssignCommand(oPC, ActionEquipItem(oNoobArmor, INVENTORY_SLOT_CHEST)));
SendMessageToPC(oPC, "After many a days afloat on this lonely voyage the man in the Crow's Nest yells out: Land ho!");
SendMessageToPC(oPC, "Welcome to Tirisfal young traveler.");
//SendMessageToPC(oTarget, "**DO NOT ATTACK THE NPCs UNLESS YOU WANT TO BE ATTACKED**");
//DelayCommand(3,SendMessageToPC(oTarget, "***PUT AWAY WEAPONS EXCEPT FOR MAGE STAFFS OR GUARDS WILL ATTACK***"));
AddJournalQuestEntry("Info", 1, oPC, FALSE, TRUE);
}
200504.24 11.38.16: Error. 'aux_mod_enter' did not compile.
aux_mod_enter.nss(14): ERROR: NO SEMICOLON AFTER EXPRESSION
- O_o huh? also, that is saying to give only ONE traveling robe and 1k gold to a player per character?