Search found 66 matches

by hiipii
Mon Mar 13, 2006 8:07 pm
Forum: ISXEQ::Scripts::Script Depot
Topic: simple XPtrack
Replies: 42
Views: 12237

simple XPtrack

Keeps track of your xp gained and echos xp gained and average xp per kill on each exp gain. update: lax's suggestion function main() { AddTrigger XPGain "You gain@*@" declare XP float script ${Me.PctExp} declare AAXP float script ${Me.PctAAExp} declare Kills int script 0 declare startXP fl...
by hiipii
Tue Aug 16, 2005 12:55 pm
Forum: MQ2::General
Topic: macroqust2
Replies: 10
Views: 12163

FreQuency wrote:Bunny with a pancake to the rescue
QFT
by hiipii
Sun Oct 24, 2004 2:02 am
Forum: MQ2::Help
Topic: Plugin Help
Replies: 54
Views: 22478

hmm i actualy decided to post the part of TFM that this was covered in and surprisingly i do no think it's there. With a bit of intelligence you should be able to figure out what to do with macros to make them work but I bet putting this in the FAQ in TFM would help lower the post count of n00bs
by hiipii
Fri Oct 15, 2004 6:08 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Loot & Sell helper
Replies: 15
Views: 7447

Basically plugins run faster and more reliably and you can easily run macros while using plugins.
by hiipii
Thu Oct 14, 2004 6:33 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Loot & Sell helper
Replies: 15
Views: 7447

Pretty nice im definately gonna check this out when mq works again =)
by hiipii
Wed Oct 13, 2004 1:11 am
Forum: MQ2::Macros::Help
Topic: Cash Macro
Replies: 14
Views: 5085

definately want some delays in there even if its just /delay 1
by hiipii
Tue Oct 12, 2004 1:16 am
Forum: MQ2::Macros::Help
Topic: Cash Macro
Replies: 14
Views: 5085

${Cursor.ID} returns null with money so try /if (${Me.Platinum}) { |Put Platinum from Inventory to Bank /shift /notify InventoryWindow IW_Money0 leftmouseup /shift /notify BigBankWnd BIGB_Money0 leftmouseup } Then repeat for ${Me.Gold} ${Me.Silver} and ${Me.Copper}. This is untested but almost posit...
by hiipii
Thu Oct 07, 2004 1:23 am
Forum: MQ2::Macros::Requests
Topic: Charmed pet health and invis macro request
Replies: 25
Views: 6852

#event resist "#*#has resisted your Greater Fetter spell#*#" #include spellcast.inc sub main :loop /if (${Me.Pet.PctHPs}<5) { /target ${Me.Pet} /call cast "Item Name" item /call cast "Greater Fetter" /doevents /popup "Kill That SL00t!" /e nuke the crap out of...
by hiipii
Thu Oct 07, 2004 1:13 am
Forum: MQ2::Macros::Help
Topic: I was wondering
Replies: 18
Views: 6423

RTFM not to be mean but thats exactly what the manual is :D it comes complete with explanations for each and every command and examples for usage. That combined with all the macros in the depot == MQ2 macroing for dummys.
by hiipii
Thu Oct 07, 2004 1:09 am
Forum: MQ2::Help
Topic: Spontaneous Reboot
Replies: 11
Views: 4201

I had same problem it was definately my ram..bought new, good ram, and im running great now. Also check cpu heat like others said though.
by hiipii
Mon Sep 27, 2004 7:58 pm
Forum: MQ2::Macros::Requests
Topic: BEEP on Named or # spawn?
Replies: 3
Views: 1704

Code: Select all

sub main
:loop
/if (${Spawn[npc named].ID}) {
/beep
/beep
/beep
}
/delay 1s
/goto :loop
/return
pretty much will beep until there are no # spawns in zone.
by hiipii
Sun Sep 26, 2004 3:12 am
Forum: MQ2::Macros::Help
Topic: Mage macro need help with a change
Replies: 7
Views: 3861

for rod just add

Code: Select all

#chat tell
right under all the other events then add sub somewhere

Code: Select all

sub Event_Chat(ChatType, Sender, ChatText)
  /if (${ChatType.Find[rod]}||${ChatType.Find[modrod]}) {
    /target ${Sender}
    /call cast "Rod of Mystical Transvergance"
  }
by hiipii
Tue Sep 21, 2004 10:06 am
Forum: MQ2::Help
Topic: Camping?
Replies: 2
Views: 1291

just do /end before you camp out.
by hiipii
Sun Sep 19, 2004 4:19 pm
Forum: MQ2::Macros::Help
Topic: First Macro... Help
Replies: 4
Views: 1487

/if (${ChatType.Equal[Group]) /return but the way you have it set up right now it is only going to respond to tells becuase of the "#chat tell". If you change it to just "#chat" it will parse every line of incoming chat. Or you can add one for each chat type you want to parse. A...
by hiipii
Sun Sep 19, 2004 3:10 am
Forum: MQ2::Macros::Help
Topic: open door help
Replies: 4
Views: 2210

You should change

Code: Select all

/if (${String[${Switch.Open}].Find["FALSE"]}>0)
to

Code: Select all

/if (${Switch.Open})
no need to change it to a string.