View Full Version : Rogue guild
Check84
07-11-2013, 01:53 AM
Anyone know of any scripts to basically automate mastering rogue guild? I fucking hate the tasks but really want to master...
I know this is cheating but fuck guild stuff is boring.
cwolff
07-11-2013, 01:55 AM
guildx
ROTOR
07-11-2013, 03:44 AM
I've tried guildx and it doesn't seem to work very well for most tasks. I started using rogue and it is working great so far. Had to add a simple edit for sweeping masters but most the other stuff seems to work well.
Tgo01
07-11-2013, 12:01 PM
I started using rogue and it is working great so far. Had to add a simple edit for sweeping masters but most the other stuff seems to work well.
Awesome. Just curious though, what did you have to edit for sweeping masters? Which rogue guild do you do your tasks out of?
ROTOR
07-12-2013, 05:35 PM
Awesome. Just curious though, what did you have to edit for sweeping masters? Which rogue guild do you do your tasks out of?
Hi. I do my tasks out of the landing guild. It was hanging up as soon as I went in. It would attempt to sweep the master before he had a chance to teach the lesson so it would keep trying to sweep instead of standing up. I just added an extra bit to stand up until the sweep was successful. Not especially neat, but it works.
p.s. thanks for the script. It's awesome.
Palcron
07-12-2013, 10:24 PM
I use a combo of guildx and guildxx. Depending on what I'm doing, one of the two of them always works. It's a bit annoying, but at least it automates everything.
DaCapn
07-13-2013, 11:17 AM
Every time I did a rogue guild task, I wrote a mini-script to do it and recorded the taskmaster messaging. They're only like 10 lines each. If you want full automation it just requires an if/then check of GLD, some extra go2s, and breaking the tasks up as definitions.
If you're somewhat committed at doing guild work, you'll have a complete script within a week. Rogue gambits is a bit of a hassle (periodic modification required) but all in all I think it was less annoying than figuring out all of the guildx syntax.
Tgo01
07-13-2013, 12:09 PM
What DaCapn said. Or just download my rogue script, which I created by doing exactly what DaCapn said :)
It will also automate partner reps if you and your partner download the task script I made to go with it.
ROTOR
07-13-2013, 12:52 PM
Yep, the 'rogue' script is great. Haven't tried the new partner modification but should be a huge help. Can probably even alter it to run bigshot for critter tasks if bigshot is set up for the task.
Tgo01
07-13-2013, 04:15 PM
Can probably even alter it to run bigshot for critter tasks if bigshot is set up for the task.
I updated the script so it can automatically do critter sweep tasks as well. This requires a few additional variables to fill in to work for your hunting grounds and what not. I can't test this change to see if it works properly but it should.
To easily get the list of critter rooms for the script to wander through use the following command prompt scripts Tillmen gave me.
Use the following script when you're in the hunting ground you want and move through each room you want to add to the list.
;e $temp = Array.new; room_count = XMLData.room_count; loop { wait_while { room_count == XMLData.room_count }; room_count = XMLData.room_count; $temp.push(Room.current.id.to_s) unless $temp.include?(Room.current.id.to_s) }
When you're all done use the following script to print out the list of rooms you need.
;e echo $temp.inspect
Palcron
07-15-2013, 03:26 PM
Just downloaded rogue for the first time, got it all set up, and I have to say, it's pretty awesome thus far. Big thanks for pulling it together.
Tgo01
07-16-2013, 12:45 AM
No problem, let me know if you notice any bugs.
Also if someone can test out the sweeping critters bit to see if it works correctly then I'll go ahead and set the script up so it can do critter subdue and cheap shot reps.
ROTOR
07-16-2013, 09:50 AM
No problem, let me know if you notice any bugs.
Also if someone can test out the sweeping critters bit to see if it works correctly then I'll go ahead and set the script up so it can do critter subdue and cheap shot reps.
I'm on vacation until July 30, but if no one gets it running by then I'll test it out.
Also, not sure if I was running your latest update, but the sweep masters got hung up. I got a task that was 12 reps and it worked well for the first 5 reps but got hung up again when getting instructed for the second time. Wouldn't stand up. Sorry if that's old news. Can check it again a the moment.
Thanks for all the hard work.
Tgo01
07-16-2013, 11:08 AM
Also, not sure if I was running your latest update, but the sweep masters got hung up. I got a task that was 12 reps and it worked well for the first 5 reps but got hung up again when getting instructed for the second time. Wouldn't stand up. Sorry if that's old news. Can check it again a the moment.
I updated the script last night so it should always make sure you're standing before trying to sweep the masters. If the problem was something else though let me know.
Tgo01
07-16-2013, 06:57 PM
Updated the script to include Solhaven rogue guild information . Also added an option to travel to a third rogue guild if necessary to finish clean windows and water plants tasks. If you're doing tasks out of Icemule it will travel to Landing then Solhaven to finish reps, Landing will travel to Solhaven then Icemule and Solhaven will travel to Landing then Icemule.
The script can be setup to do guild reps at other guilds but you'll have to enter the variables yourself because I'm too lazy to travel all over Elanthia, only takes a couple of minutes though.
Also got rid of "do_secondary_flower_rooms" and "do_secondary_window_rooms" variables and instead have "do_second_guild_tasks" and "do_third_guild_tasks" variables.
ROTOR
08-10-2013, 09:45 AM
Hi,
Not sure if you've gotten any other feedback yet. Tested the critter sweep task and it works great. The only suggestion, and not sure if others want this, is to have it wait for the critter to attack before attempting to sweep. No big deal if not. Seems I can probably just copy and edit the basic info to have it work for other critter tasks as well.
Was just giving gambits and try and ran into a bit of a glitch. Only on my second rank of gambits so the only skill now is tumble (without any other options like left or right). When starting the script it comes up with this:
[rogue: 7 people are here.]
[rogue]>rgam tumble left
You must specify an appropriate gambit.
Usage:
RGAMBIT {skill} {style}
TUMBLE
TEACH [list | person {skill} | help]
And then just keep repeating itself. Is there an easy fix to drop the 'left' so it's just 'rgam tumble'?
Thanks. Really making progress in the guild now!
Tgo01
08-10-2013, 10:20 AM
I really should clean up the variables in this script, it all looks kind of messy and it's probably easy to miss some of them.
This is something you need to open the script up in notepad and change, the default is gam = "tumble left"
Just change it to whatever your gambit is. This requires you to change the variable every couple of ranks though.
ROTOR
08-10-2013, 10:23 AM
yeah, sorry, I'm an idiot. Just noticed that at the top and came back here to fess up but you beat me to it.
ElderGriffon
01-06-2014, 12:48 AM
What is the name of this script? I have tried looking for rogue but have been unable to find it.
Tgo01
01-06-2014, 12:52 AM
What is the name of this script? I have tried looking for rogue but have been unable to find it.
I removed it from the repo because the code was such a mess and I was going to clean it up a bit but I never got around to it :/
I can upload it again if you want to try it out, just requires you to open it up in notepad and change some variables around if you're not doing it out of Icemule.
The script (should) work just fine but it was one of the first Lich scripts I made so I just wanted to pretty it up.
ElderGriffon
01-06-2014, 01:17 AM
Please do, I also posted on your other thread regarding a target script that attacks the critters according to their status ie: standing vs kneeling sittings etc... I found this one but I am not skilled at coding yet, but it lacks the rest of what is needed.
It would hide me, wait for a critter action like search etc then ambush targets left leg, then evaluate the situation. If nothing is standing it will ambush the head of anything siting or laying or kneeling..it basicly picks the attack type according to the critters status. something I can run with bigshot or paste in to take the place of the bigshot attacking sequence .
===============================================
Code:
def gd_target_mob(argtargets)
deftargets = argtargets
status_flag = ["flying", "kneeling", "sitting", "prone", "stunned", "webbed", "calmed", "sleeping"]
deftargets.each do |targgy|
$critter = GameObj.npcs.find { |npc| npc.name =~ /#{targgy}/i and npc.status == nil }
return $critter if $critter != nil
end
status_flag.each do |shatty|
deftargets.each do |targgy|
$critter = GameObj.npcs.find { |npc| npc.name =~ /#{targgy}/i and npc.status =~ /#{shatty}/i }
return $critter if $critter != nil
end
end
deftargets.each do |targgy|
$critter = GameObj.npcs.find { |npc| npc.name =~ /#{targgy}/i and npc.status !~ /dead/i }
echo "un-recognized status: #{$critter.status}" if $critter != nil
return $critter if $critter != nil
end
$critter = nil
return $critter
end
================================================== ====
Gibreficul
01-06-2014, 01:51 AM
grguild is up on the repo.
it does stunmans, subdue, and lockmastery. I haven't gotten around to the other 3 skills, mostly because I don't have a partner in Shattered to work with.
I don't really "support" it anymore, but if there's a glaring issue, like an invalid method, I'll look and update as needed. (It requires grgvars script that needs manually edited to work, and there's instructions to read within the script(s) so please read through that crap before asking questions.)
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.