Secret Garden Ideas

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
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: Secret Garden Ideas

#81 Post by lisa » Thu Apr 03, 2014 6:16 pm

Code: Select all

When_Finished = "relog"
that set as relog will just go through the chars on 1 account, if you want to use the charlist then set it to do so.

Code: Select all

	When_Finished = "charlist"
As for the deleting just make up a list of the Id's of the items you want to get rid of and post it here, then someone can post the code to do it for you.
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
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Secret Garden Ideas

#82 Post by rock5 » Thu Apr 03, 2014 9:31 pm

What do you get, worth getting, from the Secret Garden 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

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

Re: Secret Garden Ideas

#83 Post by lisa » Thu Apr 03, 2014 9:43 pm

a heap of amulets which is only good for main chars (pet xp ones mostly), I think most people farm it for the + jewels you get, you have a chance at getting +20 and I am pretty sure official servers don't or won't sell +20 in the item shop.

As for me I did it purely for the challenge, I don't play RoM anymore.
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
murmel
Posts: 3
Joined: Wed Apr 09, 2014 12:10 am

Re: Secret Garden Ideas

#84 Post by murmel » Wed Apr 09, 2014 12:20 am

sorry for my english....ist a self-english and a google-translate-english^^

i have tried the 4sg.xml but i become a this error:

[string "..."]:2: attempt to call global 'teleport_SetStep
Pause' (a nil value)
semper ubi sub ubi

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

Re: Secret Garden Ideas

#85 Post by lisa » Wed Apr 09, 2014 12:25 am

you need the teleport userfunction, you can get it at this link

http://www.solarstrike.net/phpBB3/viewt ... eport+hack
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
murmel
Posts: 3
Joined: Wed Apr 09, 2014 12:10 am

Re: Secret Garden Ideas

#86 Post by murmel » Wed Apr 09, 2014 9:44 am

ah ok, thanks for the speed-reply.....
it only works with viewtopic.php?f=27&t=2721&hilit=teleport+hack ?
or can i uncomment
semper ubi sub ubi

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

Re: Secret Garden Ideas

#87 Post by lisa » Wed Apr 09, 2014 6:06 pm

you could change it to just walk around I guess, the number of chests would be pretty low though.

This is untested but should work.
Attachments
sg4walk.xml
(11.03 KiB) Downloaded 269 times
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
murmel
Posts: 3
Joined: Wed Apr 09, 2014 12:10 am

Re: Secret Garden Ideas

#88 Post by murmel » Wed Apr 09, 2014 6:40 pm

oh great, thanks, i testet tomorrow and then i give a feedback^^

----------------------------------------------------------------

now i have it tested and it works great.

many thanks lisa ;)
semper ubi sub ubi

883Dman
Posts: 90
Joined: Sat Dec 08, 2012 9:25 pm

Re: Secret Garden Ideas

#89 Post by 883Dman » Fri Apr 11, 2014 9:36 am

I should be able to use: to delete these items? replace moveTo(isbank") with trash or something? And where would I stick the code, near the top of the onload?

Code: Select all

local ISitems_array = {
231893, -- Powerfull basic talent charm 1k
231885, -- Pet experience charm 10k
231886, -- Pet training charm 1k
231887, -- Powerfull basic experience charm 10k
}

for slot = 1, 60 do
   item = inventory.BagSlot[slot]
   if item then
      for k,v in pairs(ISitems_array) do
         if item.Id == v then
            item:moveTo("isbank")
            break
         end
      end
   end;
end;

	

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

Re: Secret Garden Ideas

#90 Post by rock5 » Fri Apr 11, 2014 9:41 am

Just use

Code: Select all

item:delete()
instead of

Code: Select all

item:moveTo("isbank")
  • 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

spyfromsiochain
Posts: 84
Joined: Sun Aug 18, 2013 9:57 am

Re: Secret Garden Ideas

#91 Post by spyfromsiochain » Fri Apr 11, 2014 1:12 pm

I tested the s4 version teleport, and if sometimes uses teleport outside the game...

regards
I look at those fans with no blades and it amazes me everytime, how can they push air without using blades lol - lisa (pro sentence :D)

883Dman
Posts: 90
Joined: Sat Dec 08, 2012 9:25 pm

Re: Secret Garden Ideas

#92 Post by 883Dman » Fri Apr 11, 2014 3:08 pm

works perfect. I stuck it right above the move to itemshop command. Now I don't have to manually check my alts for bag space.

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

Re: Secret Garden Ideas

#93 Post by lisa » Fri Apr 11, 2014 9:10 pm

spyfromsiochain wrote:I tested the s4 version teleport, and if sometimes uses teleport outside the game...

regards
uses teleport outside of game? what do you mean.
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

spyfromsiochain
Posts: 84
Joined: Sun Aug 18, 2013 9:57 am

Re: Secret Garden Ideas

#94 Post by spyfromsiochain » Sat Apr 12, 2014 2:01 am

I mean outside the zone of the secret garden. I need to test it better, but happened before several times.
I look at those fans with no blades and it amazes me everytime, how can they push air without using blades lol - lisa (pro sentence :D)

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

Re: Secret Garden Ideas

#95 Post by lisa » Sat Apr 12, 2014 2:12 am

well the only teleporting is done with dochests() and that is only called after talking to the NPC and being sent into the instance.
It is even after waitForLoadingScreen() with no ending timer so the code shouldn't be done unless it has successfully entered the instance.

So yeah I can't see how it could be teleporting outside of the instance.
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

spyfromsiochain
Posts: 84
Joined: Sun Aug 18, 2013 9:57 am

Re: Secret Garden Ideas

#96 Post by spyfromsiochain » Sun Apr 13, 2014 8:33 am

-stopped the bot
-go to character screen
-change character (same account)

and when that character logs in it teleports to the place where the crows are (event thingie)

cant be sure if the bot was still on pause, but pretty sure it was.

regards
I look at those fans with no blades and it amazes me everytime, how can they push air without using blades lol - lisa (pro sentence :D)

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

Re: Secret Garden Ideas

#97 Post by lisa » Sun Apr 13, 2014 8:39 am

spyfromsiochain wrote:-stopped the bot-go to character screen-change character (same account)
Well there is your issue, why are you stopping the bot and then manually changing characters.
You don't want it to go get the free keys?
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

883Dman
Posts: 90
Joined: Sat Dec 08, 2012 9:25 pm

Re: Secret Garden Ideas

#98 Post by 883Dman » Sun Apr 13, 2014 12:19 pm

Ack help! I created a list of things to toss out but it's also throwing away other things, namely my transport runes. Here is my function as well as the movetoitemshop so you can see where I put it. The unnamed items are the 7 day potions. Transport rune ID is 202*** for transport and guild transport so they are definitely not listed. Why are they being discarded? I checked my loot filter and even turned it is off so I know that's not it. The discards are definitely occurring during function execution. (Other possibility is that my get ID addon is displaying the wrong ID number)

Code: Select all

local ISitems_array = {
231893, -- Powerfull basic talent charm 1k
231885, -- Pet experience charm 10k
231886, -- Pet training charm 1k
231887, -- Powerfull basic experience charm 10k
242504,
242499,
242503,
242498,
242501,
}

for slot = 1, 240 do
   item = inventory.BagSlot[slot]
   if item then
      for k,v in pairs(ISitems_array) do
         if item.Id == v then
            item:delete()
            break
         end
      end
   end;
end;
	print(count)
	inventory:update()
	for slot = 61, 240 do
		item = inventory.BagSlot[slot]
 	    if item and item.ItemShopItem then
			item:moveTo("itemshop")
		end;
	end;
end

883Dman
Posts: 90
Joined: Sat Dec 08, 2012 9:25 pm

Re: Secret Garden Ideas

#99 Post by 883Dman » Sun Apr 13, 2014 12:57 pm

We may need to look at a non teleporting version. I just got a 7 day ban for "Violating TOS 7.4"
7.4 The user may under no circumstances
a) create or use cheats, mods and/or hacks as well as any other third party software products that may change the result of the online games,
b) use software, that allows "data mining" or otherwise intercepts or collects information relating to the online games

I was doing secret garden at the time they shut me down. 7.3 involves bots so that's not it. The only thing I can think of is failforge was inside SG and watching me teleport. I'd be interested to know if anyone else got banned as well. Whatever. I'm so done with this game. This gives me more ESO time now.

DISREGARD
Failforge says: Your account has been associated with the exploitation of the 7th Boss of Bethomia on Easy mode due to alteration of the game. I would like to take this time to remind you that account sharing is also against the ToS...

I've been in a Beth boss fight 1 time in my life. I don't do instances I can't solo.

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

Re: Secret Garden Ideas

#100 Post by rock5 » Sun Apr 13, 2014 8:22 pm

883Dman wrote:Ack help! I created a list of things to toss out but it's also throwing away other things, namely my transport runes. Here is my function as well as the movetoitemshop so you can see where I put it. The unnamed items are the 7 day potions. Transport rune ID is 202*** for transport and guild transport so they are definitely not listed. Why are they being discarded? I checked my loot filter and even turned it is off so I know that's not it. The discards are definitely occurring during function execution. (Other possibility is that my get ID addon is displaying the wrong ID number)
Maybe you just need to do an inventory:update() before each loop so the inventory is updated.
  • 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

Post Reply

Who is online

Users browsing this forum: No registered users and 10 guests