Page 9 of 23

Re: course of terror WP

Posted: Wed Aug 31, 2011 2:41 pm
by Guest1234
K/P worked great.
Same Waypoint.

Re: course of terror WP

Posted: Wed Aug 31, 2011 5:06 pm
by vtcN
I am also a Mage. 60 Mage/40 Druid

Are there any test scripts or waypoints that use the Swimhack so I can test if it's only this waypoint? Or, how do I use the Swimhack manually?

Re: course of terror WP

Posted: Wed Aug 31, 2011 9:54 pm
by lisa

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints type="TRAVEL">
<onload>
fly()
yrest(5000)
flyoff()
player:sleep()
</onload>
will fly, 5 seconds later will turn off fly and then go to sleep.

Re: course of terror WP

Posted: Thu Sep 01, 2011 12:44 am
by gloover
I've got this

Code: Select all

[string "..."]:3: attempt to call global 'fly' (a nil value)
so where I can find the fly-function - it is not in rock's userfunction teleport!
Also havn't see it in "onload" part of this waypoint.

Re: course of terror WP

Posted: Thu Sep 01, 2011 1:24 am
by rock5
Lisa maintains a working version here.
http://www.solarstrike.net/phpBB3/viewt ... =27&t=2765

Lisa, you should add a link to it on the first post.

Re: course of terror WP

Posted: Thu Sep 01, 2011 2:14 am
by gloover
yea, 10q u rock!

Re: course of terror WP

Posted: Thu Sep 01, 2011 2:56 am
by lisa
I thought there was a link to it on first post, must have deleted it when I did a rewrite.

Re: course of terror WP

Posted: Thu Sep 01, 2011 3:54 am
by S1y
If im doing this version of CoT with my low lvl chars ( ~30 lvl ) as well - MM would stop with error "compare to nil value".
rock5 wrote:Here's my next version. Lot's done to this.

- Added a few checks such as; if you are your 50+ level, if you succeeded in teleporting into the course of terror, etc.[/list]

And probably a few other things I can't remember.
It doesnt have any problems on chars 50+ so i have deleted few lines of code around line 131

Code: Select all

if 50 > player.Level and (player.Level2 >= 50 or player.Level3 >= 50) then
				-- Wait for user to change class
				cprintf(cli.yellow,"If you want to earn Phirius Shells, change to your 50+ class before continuing.\n")
				player:sleep()
			end
and from line 216

Code: Select all

if player.Level >= 50 or player.Level2 >= 50 or player.Level3 >= 50 then
				local filename = getExecutionPath() .. "/logs/shells.log";
				local file, err = io.open(filename, "a+");
				if file then
					file:write(" Character name: " ..string.format("%-10s",player.Name .. ".").." \tDate: " .. os.date() .. ". \tShells gained: "..inventory:getItemCount(240181) - numshells..
					". \tTotal shells: "..inventory:getItemCount(240181).. ".\n")
					file:close();
				end
			end
As they were causing problems. Im not sure why dod you Rock5 put that code there - as i was under the impression that you are trying to optimse that code for low lvl chars so they wouldnt get killed by spawns near the portal ?

Re: course of terror WP

Posted: Thu Sep 01, 2011 5:19 am
by rock5
I think your problem is the level3 value. It was a recent addition to the bot. Try updating the bot or just remove the "or player.Level3 >= 50".

The purpose of the first level 50 checks is to make sure you aren't accidentally starting the cot script with your lower class when you have a 50+ class, otherwise you will miss out on the Phirius Shells.

The second 50+ check is to only save Phirius Shell collection in the log file if the character has a 50+ class. No point saving if the character can't make shells anyway.

Re: course of terror WP

Posted: Thu Sep 01, 2011 5:34 am
by S1y
Oh yes, that make sense :)

will try to remove this

Code: Select all

or player.Level3 >= 50
a bit later and will let you know.
Thanks for quick reply - and your great work.

Re: course of terror WP

Posted: Thu Sep 01, 2011 11:16 am
by Guest1234
Would the fact that I don't have a 3rd class cause the nil value?

Re: course of terror WP

Posted: Thu Sep 01, 2011 11:58 am
by rock5
Guest1234 wrote:Would the fact that I don't have a 3rd class cause the nil value?
No. All but 1 of my characters has less than 3 classes and it works for them.

Is your bot up to date? Level3 and Class3 were added in rev 639.

I guess the cot script could be made backward compatible if there are people who still use older versions of the bot.

Re: course of terror WP

Posted: Thu Sep 01, 2011 2:39 pm
by Guest1234
I have everything up to date.

Will check again.

Thx Rock5

Re: course of terror WP

Posted: Thu Sep 01, 2011 3:58 pm
by Guest1234
Worked this time. No clue why.

Thanks again!

Re: course of terror WP

Posted: Tue Sep 27, 2011 5:48 am
by silinky
hi all!

when the swimhack is activated, the game crashes everytime.
you have any idea why?
here is a screenie:
Clipboard01.jpg

Re: course of terror WP

Posted: Tue Sep 27, 2011 6:02 am
by rock5
You probably have an old version of the fly hack with an outdated memory address. Try using the fly hack linked to on the first post.

Re: course of terror WP

Posted: Tue Sep 27, 2011 6:04 am
by silinky
you are right, mate!
i updated it and it works :)

thank you!

Re: course of terror WP

Posted: Wed Sep 28, 2011 12:51 am
by Wassuuup
Hey i was wondering that my main char is lv 30, is there any game/cource/whatever where i could get a few shells? i understand that it would make quite good money seling those stats that I could buy with shells.
Or are they all 50+ ?

Re: course of terror WP

Posted: Wed Sep 28, 2011 1:28 am
by lisa
50+ to get shells

Re: course of terror WP

Posted: Wed Sep 28, 2011 2:27 am
by botje
not true lisa, im doing COT with a lvl 30 :P

Botje