rock5 wrote:
Wait a second! You can exchange for attributes now? Since when has this been available? What are "Spirit Points"?
Whaddayathink? Spirit points? I can nowhere detect this options! Lehman is the transmutor-NPC in the class-hall in Varanas.
Selecting Lehmen I have as first option "Exchange phirius coins for transmutor charges" as second "where I can buy random fusuin stones" and third "resume..." So using the first option opens the dialog "Phirius coin shop" and "resume...".
I nowhere see the 4th. option!
Code: Select all
player:target_NPC("Lehman");
sendMacro("ChoiceOption(1);");yrest(300);
sendMacro("ChoiceOption(1);");yrest(300);
opens the phirius coin shop.
As allready said, this one
Code: Select all
if (inventory:getItemCount(203038)) > 30 then
player:target_NPC("Lehman");
sendMacro("ChoiceOption(1);");yrest(300);
sendMacro("ChoiceOption(1);");yrest(300);
RoMScript("StoreBuyItem(1,1)");yrest(50);
RoMScript("StoreBuyItem(1,1)");yrest(50);
RoMScript("StoreBuyItem(1,1)");yrest(50);
sendMacro("CloseWindows();"); yrest(50);
end;
works fine, but how to realize this using a loop, till all phirius-coins (>30) are used?