Unknown Profile skill COMBAT_MASTER. Check your manual castings <e.g. in the events or waypoint files>. Be sure the skill is in the skills section of your profile.
Did not find any crashed game clients.
scripts/rom/classes/player.lua:597: attempt to concatenate field 'Name' <a nil value>
Heres my current waypoint:
Code: Select all
<?xml version="1.0" encoding="utf-8"?><waypoints>
<!-- # 1 --><waypoint x="-8463" z="45453" y="758" tag="try again"> </waypoint>
<!-- # 2 --><waypoint x="-8459" z="45539" y="758">
if not waitForLoadingScreen(30) then
__WPL:setWaypointIndex(__WPL:findWaypointTag("try again"))
end </waypoint>
<!-- # 3 --><waypoint x="351" z="-1450" y="1269"> player:cast("ROGUE_HIDE") </waypoint>
<!-- # 4 --><waypoint x="312" z="-1376" y="1269"> </waypoint>
<!-- # 5 --><waypoint x="303" z="-1223" y="1247"> </waypoint>
<!-- # 6 --><waypoint x="293" z="-1020" y="1247"> </waypoint>
<!-- # 7 --><waypoint x="15" z="-1005" y="1255">
player:cast("ROGUE_INFORMER")
player:cast("ROGUE_FERVENT_ATTACK")
player:cast("ROGUE_ASSASSINS_RAGE")
player:cast("ROGUE_ENERGY_THIEF")
player:cast("ROGUE_PREMEDITATION") </waypoint>
<!-- # 8 --><waypoint x="-211" z="-1004" y="1254"> </waypoint>
<!-- # 9 --><waypoint x="7" z="-1018" y="1254"> player:cast("ROGUE_HIDE") </waypoint>
<!-- # 10 --><waypoint x="365" z="-1017" y="1247"> </waypoint>
<!-- # 11 --><waypoint x="362" z="-1187" y="1247"> </waypoint>
<!-- # 12 --><waypoint x="335" z="-1427" y="1269"> </waypoint>
<!-- # 13 --><waypoint x="415" z="-1448" y="1269"> yrest(10000) </waypoint>
<!-- # 14 --><waypoint x="-8472" z="45468" y="758">
if not player:hasBuff("COMBAT_MASTER") then
player:cast("COMBAT_MASTER")
end
if not player:hasBuff("POISONOUS") then
player:cast("POISON")
end
if not player:hasBuff("YAWAKAS_BLESSING") then
player:cast("YAWAKAS_BLESSING")
end
if not player:hasBuff("UNBRIDLED_ENTHUSIASM") then
inventory:useIem("UNBRIDLED_ENTHUSIASM")
end
if not player:hasBuff("UNIMAGINABLE_SALAD") then
inventory:useIem("HOUSEKEEPER_SPECIAL_UNIMAGINABLE_SALAD")
end </waypoint>
</waypoints>
and heres the skills section of my profile.xml where it calls the specific skills i have called for in the waypoints:
Code: Select all
<skill name="ROGUE_HIDE" hotkey="MACRO" priority="50" autouse="false"/>
<skill name="ROGUE_ASSASSINS_RAGE" hotkey="MACRO" priority="50" autouse="false"/>
<skill name="ROGUE_ENERGY_THIEF" hotkey="MACRO" priority="50" autouse="false"/>
<skill name="ROGUE_FERVENT_ATTACK" hotkey="MACRO" priority="50" autouse="false"/>
<skill name="ROGUE_PREMEDITATION" hotkey="MACRO" priority="50" autouse="false"/>
<skill name="ROGUE_INFORMER" hotkey="MACRO" priority="50" autouse="false"/>
<skill name="ROGUE_POISON" hotkey="MACRO" priority="50" autouse="false"/>
<skill name="ROGUE_YAWAKAS_BLESSING" hotkey="MACRO" priority="50" autouse="false"/>
<skill name="ROGUE_COMBAT_MASTER" hotkey="MACRO" priority="50" autouse="false"/>
</skills_rogue>