Hey guys, ive been having a problem with the daily script. So my HDD died on me and all my scripts are gone with it (no backup
).
So i´ve installed the bot etc., reinstalled userfunctions and stuff and this script.
When im running the Daily.xml (only changed the things needed), after getting to the crystal it doesnt collect it, it just goes on with the script running to npc and back without doing anything.
Anyone knows a solution.
EDIT: ive tried to put in the name of the crystal instead of the ID
Code: Select all
player:target_Object("Reinigungskristall",300);
EDIT2: FIXED i changed this
Code: Select all
<!-- # 1 --><waypoint x="31416" z="5715" y="-33" tag = "Item">
queststate = getQuestStatus(QName)
if queststate == "incomplete" then
player:target_Object(112976,300);
yrest(2500);
__WPL:setWaypointIndex(__WPL:findWaypointTag("Item"));
end
</waypoint>
to that
Code: Select all
<!-- # 1 --><waypoint x="31416" z="5715" y="-33" tag = "Item">
player:target_Object(112976,300);
yrest(2500);
</waypoint>
and now its working -.-