Search found 29 matches

by smelly wang
Sun May 16, 2004 7:53 am
Forum: MQ2::Macros::Help
Topic: Ini for items.
Replies: 5
Views: 1777

whats the point in increasing counter and then decreasing it again? this should work.... #event create "#*#I'll give you #1# platinum#*#for the #2#.'" #event create "#*#I'll give you #1# platinum#*#per #2#" Sub main /declare File string outer /declare Counter int outer /varset Fi...
by smelly wang
Mon Apr 26, 2004 9:25 pm
Forum: Other::General
Topic: C++ Problems - 2.00 paypal cash per problem
Replies: 2
Views: 1446

#include <stdio.h> #include <iostream> using namespace std; void main() { // first one unsigned char tmp; for (tmp=32;tmp<255;tmp++) { printf("%d %c %x %o\n",tmp,tmp,tmp,tmp); } // third one for (int i=0;i<26;i++) { for (int j=0;j<i;j++) { printf("*"); } printf("\n"); ...
by smelly wang
Thu Apr 08, 2004 10:31 am
Forum: Macro Help (MQ1)
Topic: Help converting from Parms to Data please
Replies: 13
Views: 3351

Code: Select all

${Target.Name}
${Target.Level}
|| is there one?
${Target.ID}

${Target.Distance}
/if ${Me.AbilityReady["Bash"]}
/if ${Me.AbilityReady["Kick"]}
/if ${Me.AbilityReady["Disarm"]}
i think...
by smelly wang
Mon Mar 15, 2004 5:35 am
Forum: MQ2::Help
Topic: Woes of MQ2Spawns.cpp
Replies: 10
Views: 2855

DWORD EQItemList_Detour() { [color=red]EQItemList_Trampoline();[/color] __asm { push eax; push ebx; push ecx; push edx; push esi; push edi; call AddGroundItem; pop edi; pop esi; pop edx; pop ecx; pop ebx; pop eax; }; } __asm { push ecx; push ecx; call RemoveGroundItem; pop ecx; pop ecx; }; [color=r...
by smelly wang
Fri Mar 12, 2004 8:02 am
Forum: MQ2::Help
Topic: Wed Mar 10 01:47:xx 2004 Error!
Replies: 14
Views: 3574

eqgame.ini isnt used anymore. you need to change the date in eqgame.h before you compile. if the date in eqgame.h is only 1 hour off the date that pops up in the message box, change eqgame.h to the msg box one and recompile. if its a lot different, then download the zip, delete all the old files, an...
by smelly wang
Wed Mar 10, 2004 2:24 am
Forum: MQ2::Bug Reports
Topic: Escape Freeze
Replies: 1
Views: 865

I had that too, but disabling anti virus software stopped it. But it never used to happen.
by smelly wang
Sat Mar 06, 2004 5:47 am
Forum: Macro Help (MQ1)
Topic: parameters...
Replies: 4
Views: 1204

Code: Select all

/sub main
should be

Code: Select all

sub main
and yea, you need to declare variables.
by smelly wang
Thu Mar 04, 2004 11:08 pm
Forum: Macro Help (MQ1)
Topic: need some help with /if n please
Replies: 13
Views: 2258

put the first curly bracket on the same line as the if.

eg

Code: Select all

sub Main 
/declare testa global 
/varset testa 2 

/if n @testa<3 { 
/echo @testa is < 3 
} 
/endmacro 
and use code brackets!!! :p
by smelly wang
Sat Feb 28, 2004 5:09 am
Forum: Macro Help (MQ1)
Topic: Beep not working ?
Replies: 1
Views: 614

You have volume turned up? hehe. Not sure if this would matter or not, but do you have sound turned on in eq options?
by smelly wang
Fri Feb 27, 2004 5:34 pm
Forum: Macro Help (MQ1)
Topic: Is there any way to use && or || (and & or) oper
Replies: 13
Views: 2096

You can have multiple and/or operators in it, just need to put brackets around 2 of them. eg /if n ((A==1 || B==2) || C==3) { do this } Thats the basic logic, which works for me. You'll have to figure out where to put the brackets and operators if you want to have || and && in one statement.
by smelly wang
Fri Feb 27, 2004 6:28 am
Forum: Macro Help (MQ1)
Topic: New Tradeskills
Replies: 4
Views: 1404

At the moment you'll have to hardcode the locations into your macro, eg use /click left x y. By the sounds of things though the new mouse code will have some sort of /click combine it though
by smelly wang
Mon Feb 23, 2004 5:26 am
Forum: MQ2::General
Topic: CTD~
Replies: 13
Views: 3377

Do you still crash without mq loaded?
by smelly wang
Sat Feb 21, 2004 1:40 am
Forum: Macro Requests (MQ1)
Topic: Mob Spawn w/ Email Possible?
Replies: 3
Views: 1533

Can think of 2 ways to do this:

1. When mob spawns, do /exec emailprogram bg, but have command line parameters in there to send the email. No idea if this is even possible

2. Have a plugin to do email like you mentioned
by smelly wang
Fri Feb 20, 2004 5:08 pm
Forum: Macro Help (MQ1)
Topic: First attempt at a Macro
Replies: 13
Views: 2577

Code: Select all

/doevents HealMe   | Only does HealMe
/doevents flush      | Clears doevents queue
/doevents chat       | Only does chat events
/doevents              | Does all events
its all in the readme btw ;)
by smelly wang
Fri Feb 20, 2004 3:40 am
Forum: MQ2::Help
Topic: erros help plese
Replies: 2
Views: 995

..................