course of terror WP

Additional botting resources. Addons may be either for the game itself or for the RoM bot.
Forum rules
Only post additional bot resources here. Please do not ask unrelated questions.
Message
Author
Guest1234
Posts: 65
Joined: Wed Aug 31, 2011 10:19 am

Re: course of terror WP

#161 Post by Guest1234 » Wed Aug 31, 2011 2:41 pm

K/P worked great.
Same Waypoint.

vtcN
Posts: 4
Joined: Wed Aug 24, 2011 11:31 am

Re: course of terror WP

#162 Post by vtcN » Wed Aug 31, 2011 5:06 pm

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?

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: course of terror WP

#163 Post by lisa » Wed Aug 31, 2011 9:54 pm

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.
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

User avatar
gloover
Posts: 304
Joined: Wed Jul 07, 2010 4:31 am

Re: course of terror WP

#164 Post by gloover » Thu Sep 01, 2011 12:44 am

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.

User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: course of terror WP

#165 Post by rock5 » Thu Sep 01, 2011 1:24 am

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.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan

User avatar
gloover
Posts: 304
Joined: Wed Jul 07, 2010 4:31 am

Re: course of terror WP

#166 Post by gloover » Thu Sep 01, 2011 2:14 am

yea, 10q u rock!

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: course of terror WP

#167 Post by lisa » Thu Sep 01, 2011 2:56 am

I thought there was a link to it on first post, must have deleted it when I did a rewrite.
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

S1y
Posts: 23
Joined: Mon Jul 04, 2011 9:43 am

Re: course of terror WP

#168 Post by S1y » Thu Sep 01, 2011 3:54 am

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 ?

User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: course of terror WP

#169 Post by rock5 » Thu Sep 01, 2011 5:19 am

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.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan

S1y
Posts: 23
Joined: Mon Jul 04, 2011 9:43 am

Re: course of terror WP

#170 Post by S1y » Thu Sep 01, 2011 5:34 am

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.

Guest1234
Posts: 65
Joined: Wed Aug 31, 2011 10:19 am

Re: course of terror WP

#171 Post by Guest1234 » Thu Sep 01, 2011 11:16 am

Would the fact that I don't have a 3rd class cause the nil value?

User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: course of terror WP

#172 Post by rock5 » Thu Sep 01, 2011 11:58 am

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.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan

Guest1234
Posts: 65
Joined: Wed Aug 31, 2011 10:19 am

Re: course of terror WP

#173 Post by Guest1234 » Thu Sep 01, 2011 2:39 pm

I have everything up to date.

Will check again.

Thx Rock5

Guest1234
Posts: 65
Joined: Wed Aug 31, 2011 10:19 am

Re: course of terror WP

#174 Post by Guest1234 » Thu Sep 01, 2011 3:58 pm

Worked this time. No clue why.

Thanks again!

User avatar
silinky
Posts: 213
Joined: Mon Nov 23, 2009 5:07 am

Re: course of terror WP

#175 Post by silinky » Tue Sep 27, 2011 5:48 am

hi all!

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

User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: course of terror WP

#176 Post by rock5 » Tue Sep 27, 2011 6:02 am

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.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan

User avatar
silinky
Posts: 213
Joined: Mon Nov 23, 2009 5:07 am

Re: course of terror WP

#177 Post by silinky » Tue Sep 27, 2011 6:04 am

you are right, mate!
i updated it and it works :)

thank you!

Wassuuup
Posts: 6
Joined: Wed Sep 21, 2011 11:52 pm

Re: course of terror WP

#178 Post by Wassuuup » Wed Sep 28, 2011 12:51 am

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+ ?

User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: course of terror WP

#179 Post by lisa » Wed Sep 28, 2011 1:28 am

50+ to get shells
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual

User avatar
botje
Posts: 656
Joined: Wed Oct 27, 2010 7:17 am

Re: course of terror WP

#180 Post by botje » Wed Sep 28, 2011 2:27 am

not true lisa, im doing COT with a lvl 30 :P

Botje

Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests