What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

leaving party after geting to a certain Area or hotspot in profile ?

wazu

New Member
Joined
Aug 20, 2011
Messages
32
Reaction score
0
Hi guys

i been trying to search but culdnt find is there a script or plugin
that when you get to a sertain area you leave party or instance or it pushes a keyboard key with a macro

beging on my knee realy need this one hehe
want to grind with my 5 acount raf in instances and no doing the bosses but only the normal mobs
pleaaasee pleaaase may there be sush a thing hehe:D
 
PHP:
<If Condition="Me.ZoneId == 1637">

<CustomBehavior File="RunMacro" Macro="/script LeaveParty()" NumOfTimes="1" WaitTime="1000"/>

</If>

Basically what that does is it will leave the party if you end up in Orgrimmar, you'll have to replace the ZoneId to your liking (like if you want it to run the command if you end up in Swamp of Sorrows). I haven't tested the script but, test it. This is only for questing profiles though, maybe that's not what your looking for. But you have the script there.
 
wow thanks :) is this posible with a hotspot ? in a profile because its in a instance

o forgot 2 i am runing several acounts 5 acounts is there a way they all do the same as the leader acount ?
 
Last edited:
Like maybe something like this only instead of inviting leaving a cs file as when it bumps into the specific hotspot/blackspot it leaves party ?




using System;
using Styx;
using Styx.Helpers;
using Styx.Plugins.PluginClass;
using Styx.WoWInternals;

namespace PartyInviter
{
public class PartyInviter : HBPlugin
{
public override string Name { get { return "Party Inviter"; } }
public override string Author { get { return "neoDite"; } }
public override Version Version { get { return new Version(0, 1, 0, 0);; } }
public override string ButtonText { get { return "Comming Soon"; } }
public override bool WantButton { get { return false; } }

public override void Pulse()
{
if (!StyxWoW.Me.IsInParty)
{
Logging.Write("PartyInviting :NAME");
Lua.DoString("InviteUnit(\"NAME\")");
}
}
}
}

sorry guys i ask so mutch hehe but this would realy be something for multiboxer with 5 acounts they could then just grind inside dungeons wethaute people knowing enything and as the tanks arnt so good to take on the bosses so well it will just grind the elite mobs witch is beter exp specialy if you got raf lol
i realy apreciate the help in advance :D
 
Last edited:
sorry me again or maybe a script that ifa certain blackspot = TRUE uninvite group mamber 2 group mamber 3 and so on then every every one leaves the instance automaticly is this posible :(? i realy been searching for this over 9 houres haha i realy wisht i did my C++ when i was younger lol
 
Back
Top