Page 1 of 1

i forgot some basic macro commands, pls help :)

Posted: Thu Mar 14, 2013 3:45 am
by volkovy
hi all,

i want to write some instance farming waypoints, and forgot 3 codes:

- how to invite an alt to party? (i have AutoAcceptInvite on)
- how to leave that party after clearing instance?
- how to mount up after leaving party (and instance ofc) ?

thx,

Re: i forgot some basic macro commands, pls help :)

Posted: Thu Mar 14, 2013 4:12 am
by lisa
volkovy wrote:- how to mount up after leaving party (and instance ofc) ?

Code: Select all

player:mount()
volkovy wrote:- how to leave that party after clearing instance?

Code: Select all

RoMScript("LeaveParty()")
volkovy wrote:- how to invite an alt to party? (i have AutoAcceptInvite on)

Code: Select all

RoMScript('InviteByName("Charname")')

I prefer to use an addon called Invite last group, which just reinvites which ever characters were in party previously.

Code: Select all

SlashCommand("ILG inv")

Re: i forgot some basic macro commands, pls help :)

Posted: Fri Mar 15, 2013 4:36 am
by volkovy
thank you very much! :lol:

uhm, i'm missing 1 more line..

how do i make the character leave party when backpack is full?

Re: i forgot some basic macro commands, pls help :)

Posted: Fri Mar 15, 2013 5:14 pm
by kenzu38

Code: Select all

if inventory:itemTotalCount(0) == 0 then RoMScript("LeaveParty()") end

Re: i forgot some basic macro commands, pls help :)

Posted: Fri Mar 15, 2013 5:27 pm
by Ego95
this is what I use in ks:

Code: Select all

		if 1 > inventory:itemTotalCount(0) then
			__WPL:setForcedWaypointType("TRAVEL")
			RoMScript("LeaveParty()")
			waitForLoadingScreen()	
			__WPL:setWaypointIndex(__WPL:findWaypointTag("sell"));
		end
AlterEgo95