Auto-translated
A simple answer: turn on the light.
New here? I'm Roha — want a quick tour?
A simple answer: turn on the light.
Why this trigger specifically? Or was it intended that entering a certain region would grant a Pelt?
Added 1 minute ago
Please provide the complete function; there might be an error somewhere.
function AshaTest()
GiveArtefact("Pelt", 53);
GiveArtefact("Pelt", 47);
MessageBox(GetMapDataPath().."AshaText.txt");
end;
function AshaTest2()
GiveArtefact("Eruina", 53);
GiveArtefact("Eruina", 48);
end;
Trigger(REGION_ENTER_AND_STOP_TRIGGER, "GiveArtTestReg", "AshaTest");
Trigger(REGION_ENTER_AND_STOP_TRIGGER, "test1", "AshaTest2");
local x, y, f = GetObjectPosition(objectname);
if ((x == REQUIRED_X) and (y == REQUIRED_Y) and (f == REQUIRED_FLOOR)) then
YOUR CODE
end