Page 14 of 23

Re: course of terror WP

Posted: Tue Jan 03, 2012 9:51 pm
by lisa

Code: Select all

RoMScript('CastSpellByName("Heffner Camp Transport Spell")')
Obviously need to change it for different languages.

Re: course of terror WP

Posted: Tue Jan 03, 2012 10:19 pm
by rock5
Ah, that's why it wasn't working for me, I misspelt the command.

Re: course of terror WP

Posted: Tue Jan 03, 2012 11:56 pm
by kuripot
lisa wrote:

Code: Select all

RoMScript('CastSpellByName("Heffner Camp Transport Spell")')
Obviously need to change it for different languages.




is this correct???

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints>
	<!-- # 1 --><waypoint x="4081" z="3340" y="18">
	RoMScript('CastSpellByName("Heffner Camp Transport Spell")'); 
	waitForLoadingScreen();
	</waypoint>
</waypoints>

Re: course of terror WP

Posted: Wed Jan 04, 2012 12:50 am
by lisa
First glance it looks fine, but did it work??

Re: course of terror WP

Posted: Wed Jan 04, 2012 2:01 am
by rock5
Strange that mine says "Transport: Heffner Camp".

Re: course of terror WP

Posted: Wed Jan 04, 2012 4:00 am
by lisa
yeah skill name on your screen says
Transport: Heffner Camp
but to use the actual skill you need to use
Heffner Camp Transport Spell

Pretty sure I had to find the name directly in memory, it was about 3 months ago I did that.

Re: course of terror WP

Posted: Wed Jan 04, 2012 6:00 am
by rock5
That's whacky.

Re: course of terror WP

Posted: Wed Jan 04, 2012 3:31 pm
by kuripot
lisa wrote:First glance it looks fine, but did it work??


not working,,, just standing inside the room

Re: course of terror WP

Posted: Wed Jan 04, 2012 9:06 pm
by rock5
Hm... I'm not sure whta Lisas issue was but this worked for me.

Code: Select all

RoMScript('CastSpellByName("Transport: Heffner Camp")')

Re: course of terror WP

Posted: Thu Jan 05, 2012 12:55 am
by MiesterMan
So, I tried this again today and found that it got throught he first two rounds flawlessly. However on the third round it crashed.

This is a big improve from where it just crashed instantly but still it crashes for me where as if I do it with the regular swimack (romeo's) it works without crashing.

Any ideas why it does it? I'd really, REALLY like to have this working.

Re: course of terror WP

Posted: Thu Jan 05, 2012 1:05 am
by lisa
To narrow down any possible issue with the WP, test it using the hack.xml waypoint I have on the swimhack topic.

If you can turn fly on and off constantly without crashing then maybe there is an issue in the cot WP for you?

I run cot 30 odd times a day and don't have any issues so I really am not sure why you keep crashing.

Re: course of terror WP

Posted: Thu Jan 05, 2012 1:14 am
by rock5
It works fine for me. Maybe you were just really unlucky. One crash does not a problem make.

I take it you have the latest version of lisas swim hack? I seem to remember she used to have a version that "locked" the swim value but was unstable when porting.

Re: course of terror WP

Posted: Thu Jan 05, 2012 1:34 am
by lisa
I havent updated that version with the timer for ages, it will crash instantly since address is wrong. I can't remember if it is still on first post, I'll check and remove it if it is.

Re: course of terror WP

Posted: Thu Jan 05, 2012 5:46 am
by MiesterMan
lisa wrote:To narrow down any possible issue with the WP, test it using the hack.xml waypoint I have on the swimhack topic.

If you can turn fly on and off constantly without crashing then maybe there is an issue in the cot WP for you?

I run cot 30 odd times a day and don't have any issues so I really am not sure why you keep crashing.
Yes, it crashes almost instantly with the hack.xml and with using commandline to toggle swim hack on.

I tested this wp file when it first came out for 7 days straight, all 3 characters I was running crashed within the first round (all coins charged, 0 shells gained).
I gave up after that.

As I was looking to improve again I wanted to have access to this but I just can't get myself to dedicate hours to running minigames (not that we should really have to jump through these hoops). Without this working, I'm not going to be able to use this.

What I haven't tried is using romeo's swimhack with the waypoint file. I guess that would narrow down if it's using the swimhack with the script running or just the MM version of the swimhack causing the problem. The testing is very costly though so I was hoping you guys had some insight. :?

Re: course of terror WP

Posted: Thu Jan 05, 2012 6:03 am
by lisa
well it's more then 1 character so probably isn't the profile, unless you use the same profile for each char.

Can't be an old version of the function or it would crash instantly from having the wrong address.

You don't have 2 versions of the function still?
Maybe do a notepad++ search for "function fly(" for the rom folder?

I can't say why Romeo's works for you as I don't know how he did his.

Does it crash when using fly or using flyoff or both.

I think you said you had latest and reverted files, so can't be that.

Your userfunctions does look like this right?

Code: Select all

local offsets = {addresses.charPtr_offset, addresses.pawnSwim_offset1, addresses.pawnSwim_offset2}
local swimfunction_ptr = addresses.swimAddress
local active = 4

function fly()
	memoryWriteString(getProc(), swimfunction_ptr, string.char(0x90, 0x90, 0x90, 0x90, 0x90, 0x90));
	memoryWriteIntPtr(getProc(), addresses.staticbase_char, offsets, active);
	printf("Swimhack ACTIVATED!\n");
end

function flyoff()
	memoryWriteString(getProc(), swimfunction_ptr, string.char(0x89, 0x83, 0xB4, 0x0, 0x0, 0x0));
	printf("Swimhack DEactivated.\n");
end
Really not sure what else it could be.

Re: course of terror WP

Posted: Thu Jan 05, 2012 6:39 am
by MiesterMan
No, they each have their own profile. Couldn't chain dailies to the minigames otherwise. I was also wanted to run them through goblin mines solo so they each got the extra chest loot.

The only thing I could think of is the threading aspect, maybe my timing isn't as good as everyone elses. I'm also going to try running the script and a couple of other computers (though it's undesirable for me since it turns my room into an oven).

Re: course of terror WP

Posted: Thu Jan 05, 2012 4:53 pm
by kuripot
rock5 wrote:Hm... I'm not sure whta Lisas issue was but this worked for me.

Code: Select all

RoMScript('CastSpellByName("Transport: Heffner Camp")')

still not working to me...
im doing wrong???

cot_tele.xml

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints type="TRAVEL" >
<!-- Rock5's Course of Terror waypoint file with teleport -->
<!--   version 1.72 . Thanks to lisa for original script  -->
<onload><![CDATA[
	--=== User Options ===--

	When_Finished = "heffner recall"
		-- "end" to end script, "relog" to log next character and "waypointfilename" to load that waypointfile.

heffner recall.xml

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints>
	<!-- #  1 --><waypoint x="4081" z="3335" y="18">
		RoMScript('CastSpellByName("Transport:Heffner Camp")');
		waitForLoadingScreen();
	</waypoint>
</waypoints>

Re: course of terror WP

Posted: Thu Jan 05, 2012 5:03 pm
by MiesterMan
kuripot: The text in the name of the skill has to be exact. You took the space out of between the colon and the camp name, it should read:

RoMScript('CastSpellByName("Transport: Heffner Camp")')
not
RoMScript('CastSpellByName("Transport:Heffner Camp")')

That's assuming it's the right number of spaces, heh.

Edit: Also, I'm not sure if it really matter but you probably don't have to have spaces in the name of the waypoint file. Change the name to heffner_recall.

Re: course of terror WP

Posted: Thu Jan 05, 2012 9:32 pm
by Guest1234
Am I the only who keeps getting aggro on this?

I just got back from X-Mas vacations to see an update on RoM.
So I updated everything about the bot, and now every time I try this WP, I draw aggro and die.

Am I missing anything?

Swimhack, Cot-Tele, Bot, MM all of it updated.

Re: course of terror WP

Posted: Thu Jan 05, 2012 9:43 pm
by lisa
hmm cot you should be teleporting directly to the seals, so you shouldn't be getting agro from anything.
You need to go very close to the summoning seals to spawn mobs.