Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Tholomew

Pages: [1]
1
Scripting Chat / Re: Project Idea: Ant Quest Helper
« on: March 07, 2010, 03:34:13 PM »
I made one from lots of different peoples scripts a year or 2 ago, it is probably pretty messy but didn't fail that much.

It recalls to black ants, kills either 7 and loots the mushies, or keeps killing enough until you have 200, I normally just farm them seperatley before.

Then it recalls to my boat, fills the pitcher 8 times, because the thing will drain an unlimited one anyway I think.

The recalls to the quest goes through all the holes, rails to the queen, does everything and loops back to black ants.

2
Scripting Chat / Re: Journal Scanner
« on: January 22, 2009, 11:55:16 PM »
Yea ok, changed that seems to be working bit better, probably just getting unlucky.

So there is no way really to ignore "Toshiyuki:" but still pick up on Toshiyuki

3
Scripting Chat / Re: Power Scroll scan script
« on: January 22, 2009, 10:53:46 PM »
Nice working, I just made it so everything called a price individually because my buy prices will change too frequent.

And added some msg instead of display haha like Calculating... at start and then Order Total: %totalamount

also made a version to skip setting up bags incase they dump them in trade window:X

Thanks a lot

4
Scripting Chat / Re: Power Scroll scan script
« on: January 22, 2009, 08:29:31 PM »
Ah great! Thanks ill let you know how i get on.

5
Scripting Chat / Re: Power Scroll scan script
« on: January 22, 2009, 02:14:36 PM »
Oh great! Cheers

6
Scripting Chat / Power Scroll scan script
« on: January 22, 2009, 05:28:09 AM »
Hi,

I want to make a script that looks at all powerscrolls in a bag, I set all prices for what there worth within the script. And the script will total the amounts and display Total.

Here is some code, its just test to show, if this would be the best way to go about it. I know its not proper, its just showing you the basic flow.

Code: [Select]
finditem XXXX
if #property = 120 Swordsmanship
 {
  set amount + 0.5
  some ignore code
  return
 }
 if #property = 120 Macing
 {
  set %amount + 1
  some ignore code
  return
 }
 if #property = 120 Magery
 {
  set %amount + 12
  some ignore code
  return
 }
 if #property = 120 Ninjitsu
 {
  set %amount + 1
  some ignore code
  return
 }
 if #property = 120 Healing
 {
  set %amount + 0.2
  some ignore code
  return
 }
 
 Totals all the amounts and Displays

So like this id need to do that to every 120 powerscroll/stat scroll and a couple 15's Dont care rest.

Anyway any thoughts would be good. Thanks!

7
Scripting Chat / Re: Journal Scanner
« on: January 22, 2009, 01:41:11 AM »
Another thing I have noticed with the script, It misses a lot of the time, when it should be hitting the alert, it must not be reading journal precisely every time. I have version 1.0

Cheers

8
Scripting Chat / Re: Journal Scanner
« on: January 22, 2009, 01:26:50 AM »
Hehe, the thing is my name is "Toshiyoki in game, thats the problem I face :P

9
Scripting Chat / Journal Scanner
« on: January 22, 2009, 12:54:27 AM »
Hey Trail

Im using your Journal scanner, I am wondering if its possible to ignore things in journal. I will paste basically what im doing, its probably basic i know, but gets job done.
Code: [Select]
gosub TM_AdvJournalSync container 100

mainloop:
gosub scan
goto mainloop


sub scan
gosub TM_AdvJournalScan container none tosh toshiyuki you_there you_are_invited powerscrolls power scrolls
IF #RESULT = #TRUE
 {
  sound ringtone.wav
 }
 gosub TM_AdvJournalSync container
 return

What Im wanting to do, because I want to have a msg saying something every 10minutes, I dont want the alarm to go off when I say something can I somehow ignore "Toshiyuki:"

Thanks for any input!

Pages: [1]