Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - CityKitty

Pages: 1 2 3 [4] 5 6
46
Crafting / Re: Using the Crafting Stations
« on: June 03, 2021, 08:08:48 AM »
Thanks so much. I will bumble along and try to apply the things you said. Meanwhile, if there's anything you need to know about the alchemy and scribe stations, I'm here to help.

47
Crafting / Re: Using the Crafting Stations
« on: June 02, 2021, 09:14:05 AM »
I only have fletching station, sewing machine and the smithing press to test with. I am assuming the other stations have the same description:
"Uses Remaining:" and then the number at the end of the description when you hover over with the mouse.

         Yes

So for the Crisis Craft and Fill Spellbook script, the changes would happen in:
MWCraft
(set some variables here like the TYPE for the craft station)
This is the focal point where the logic would have to be changed.

         The only place MWCraft is mentoned is in several subs, such as:
sub Makescroll11
    gosub MWCraft Scribe N/A 1 2 1
    wait 10
    Return
       I don't see here I can put the type.

I would do a fall back to the crafting tool (the script keeps 2 in your main backpack... which is acceptable), in the event that the crafting station is out of charges.

      Since not all my chars have tinkering, maybe an idea is to put a message "If you don't have tinkering, be sure to put two tools in the backpack."

Maybe a new script idea is born from a script to replenish crafting stations until full...

       Useful for those who don't use Pinco's in the EC and an organizer to dump the tools into the station.

Here is up the point where the change is required.
This routine would need to be modified to first validate the crafting station and how many charges are left on it.

I would add a variable:
set !ToolStationScribe OMIC
       Doesn't appear to belong anywhere with the other variables but I'm too new to say really.

Other types to be added would be for each of the craft skills, but this is a scribe only script.
Other scripts that use this MWCraft routine would benefit from adding more variables for the other crafting stations:
set !ToolStationAlchemy TTHC
set !ToolStationFletching JGHC
set !ToolStationBlacksmithing LQGC
set !ToolStationTailoring BJGC
set !ToolStationTinkering ANJC
There is possibly a different type for the other orientation of the various stations. I do not have that many vet rewards to choose to setup a complete craft area with all the stations, so I would probably ask for you help on the ones you already have.

     ...Nope, fish out of water here. Can't tell where this should go.

Code: easyuo
  1. ; Crafting Stuff
  2. Sub MWCraft
  3.  
  4.   ; Gosub Craft (Tool) (Type) (Category) (Page) (Selection)
  5.   Namespace Push
  6.   Namespace Local Mwinc_Craft
  7.   set !Type N/A
  8.   set !Smelt False
  9.   set !MakeLast False
  10.   set !Enhance False
  11.   set !Craftmenu 530_497
  12.   set !Toolfletching UFG
  13.   set !Tooltailoring HAG
  14.   set !Toolalchemy RQF
  15.   set !Tooltinkering JTL
  16.   set !Toolblacksmithing OBG_FBG_TLH
  17.   set !Toolcooking OGG_DND_BCG
  18.   set !Toolcarpentry BIG_AIG_EGG_AGG_ZHG_CGG_CIG_IGG_WFG_KGG
  19.   set !ToolScribe PBG
  20.   set !ToolStationScribe OMIC
  21.   set !ToolStation !ToolStation . %1
  22.   set !Tool !Tool . %1
  23.   set !N_Variable %0
  24.   if %2 <> MakeLast && %2 <> Smelt && %3 <> Enhance
  25.   {
  26.     set !Type %2
  27.     set !Category %3
  28.     set !Page %4 - 1
  29.     set !Selection %5
  30.   }
  31.   if %2 = Smelt
  32.   {
  33.     set !Smelt True
  34.     set !Item %3
  35.   }
  36.   if %2 = Makelast
  37.     set !MakeLast True
  38.   if %3 = Enhance
  39.   {
  40.     set !Enhance True
  41.     set !Item %4
  42.   }
  43.   Finditem !ToolStation G_2
  44.   if #findcnt > 0
  45.    {
  46.    event property #findid
  47.    wait 5
  48.    ; here pick off uses remaining number using str commands on #property or need to find a sub that does that...
  49.    ; so we are going to use a new made up variable called %number_of_uses to hold that value
  50.    event property #findid
  51.    wait 5
  52.    str pos #property remaining:
  53.    set %left #strres + 11
  54.    str len #property
  55.    set %length #strres - %left
  56.    str mid #property %left %length
  57.    set %number_of_uses #strres
  58.    if %number_of_uses < 1
  59.   {
  60.     finditem !Tool C_ , #backpackid
  61.     if #findcnt < 1
  62.     {
  63.       display Out Of %1 Tools
  64.       halt
  65.     }
  66.   }
  67.  
  68.   if #contsize = !Craftmenu
  69.   {
  70.     if !Last_Tool <> !Tool
  71.     {
  72.       gosub Click_Offset 50 50 R
  73.       wait 20
  74.     }
  75.   }
  76.   for #Findindex 1 #Findcnt
  77.   {
  78.     if #Findcol = 0
  79.       Break
  80.   }
  81.   if #findcol <> 0
  82.   {
  83.     display Out Of %1 Tools
  84.     halt
  85.   }

CheckScribe
(add a check for charges on the crafting station)
Even without the test for charges on the crafting station here, it would make 2 tools to sit in the backpack of the character, which is a good fall back. The primary will be to use the crafting station and the secondary would be to use the tool in backpack.
If you do not have tinkering on the character, then it will fail and CheckScribe would need the verification like what was added in MWCraft.

So that is an example on how to modify one of those to handle using the station (writing desk - in this case).
It needs some decisions and debugging/testing, but that is the idea.

If you need more assistance, I can play with and test later in the week.

To really test this out and be useful in all situations, there is probably a different orientation for each of the rewards that would have to be added to the Types above.

Yes, I'm sure you're right. I will see if I can change mine and give you the other code. Right now, both of those are for facing south.

Thanks for all the help! I wish I was a lot farther along in my learning to write scripts, but I'm working on it. Happy to test and help out in whatever ways you need. :)

48
Crafting / Re: Using the Crafting Stations
« on: June 01, 2021, 07:56:54 PM »
So, the guys here pointed me to a script "FindInfo" that allows me to see the item id, type, etc. so let me try again and see if this info makes any sense at all to you. *crosses fingers*

Writing Desk Type: OMIC ID: GDJAJND
Alchemy Station Type: TTHC ID: WVGMKQD

I looked through the scribe and alchemy scripts I have but was just too confused. I can give it another try tho.

I'm feeling quite happy with myself right now tho, since I managed to change another script to let me add something new to it and it worked! First try too! Ok, it wasn't that big a deal but I will look for my kudos where I can find them!  8)

Going to try to attach the scripts too. Thanks in advance for your help!

49
Crafting / Re: Using the Crafting Stations
« on: May 31, 2021, 07:16:32 AM »
Ack! Those numbers are from the Pinco's UI item ID. I have the find ID script so will try and see if that works.

I will give the "use item" command and see what happens. Thanks for the response.

50
Crafting / Using the Crafting Stations
« on: May 30, 2021, 03:45:02 PM »
Hey guys! Just a quick question. I've been using your terrific scripts for my crafting for a while but now I'm starting to get the benches that store a gazillion charges and I'm wondering how I change the script for that. The writing desk is ID 40938 and the alchemy one is ID 40323. Can anyone tell me what to change in the script?

Thanks in advance!

51
Crafting / Re: Gaderian's Refinement Amalgamator
« on: May 30, 2021, 03:39:01 PM »
Wow! I had been throwing out my refinements because I was fed up spending all my time in game trying to figure out what I have and what to do next. I had given up. This script took no time at all and just got busy doing the job. Now, I really feel awful about throwing the old stuff out!

Good job, well done as usual!

52
yes, in the EC all I need to do is right click and select which one I want to cast and off it goes. If it can't select something, the menu just sits there and the script says you must wait to cast again, so it's not actually doing anything but waiting. Your script rescued me anyway and it works like a charm so I'm ok there, just puzzled why, in the span of only a month, I suddenly can't make that choice in CC now. I'll keep trying and let you know tho!

Thanks for the response!

53
Well, this was  working fantastically and I finished two tamers from 90 to 120 in no time. Now, I want to finish a third, I can't seem to recall how I managed to set my menu that pops up, asking you to pick what you want, empowerment or as one, on auto in the classic client. I previously had a way to do that and it's still there in the enhanced client. The script just sits there if I can't remember what I did. Can anyone tell me?

Thanks in advance for any help!

54
Character skill advancement / Re: Jawetzels tamer
« on: May 22, 2021, 07:24:23 AM »
Just wanted to say this script is still working like a charm! Used it last night for a while and it worked beautifully. Occasionally gets hung up, running over bulls while looking for them, but easily fixed. Top notch!

55
I love this script! When I got up into the high taming levels, I just got too bored and lost interest. This is going to help me finish up for sure. Easy as pie, no setup. I posted this so we'll all know it's still working just fine. No glitches.

56
General Discussion / Re: Running Out of Browsers
« on: March 06, 2021, 11:16:12 AM »
Looks like you fixed it! I wasn't able to get in with this browser when I tried earlier. I use Brave and Chrome. I'll try the chrome in a minute.

Thanks so much for fixing this so quickly! I felt like a real fish out of water.

57
General Discussion / Running Out of Browsers
« on: March 06, 2021, 10:01:20 AM »
Hey guys, same old banning error again on login. I keep trying to use a new browser to get back in but it looks like it gets locked out eventually. I've cleared the cache, disabled all addons and such but nothing works. I really need to find a fix because this is one of my favorite sites. Any ideas?

Thanks in advance for any help.

58
Off Topic / Re: Is this a Mistake?
« on: November 08, 2020, 01:44:18 PM »
Back when I was hosting the site, I had set up all kinds of IP filters including some in Apache.  Those are all gone now and really the only filters left that I know about are a few block IP bans.  But those won't be intermittant, if you're in the block, you just won't be able to connect. I don't think Tidus has done anything like that; all our annoying users from that time have all been sent to the Isle of Misfit Dutchbags.

We don't care if you connect using a VPN any longer.  I do myself, and really try to surf using one 7/24 now.  Tidus is the rule maker now, so it's ultimately up to him for those kinds of things.

There are always new bad actors and you have to stay on top if it. I wouldn't worry about this from your end. I'm pretty sure the error is in the browser. I'll keep tracking it down.

59
Off Topic / Re: Is this a Mistake?
« on: November 08, 2020, 01:41:26 PM »
On Firefox (if that is what you are trying to connect with), the "Today" time period may be the date since midnight or 24 hours, but for certain no longer than that. You may need to go back further to delete the history to allow you to reconnect. Your original post description was early yesterday morning... So you will need to get to a period earlier than that to get rid of that saved data.

Gaderian

Using Brave which is really just Chrome but less nosey. That makes it even more interesting that I get blocked in Brave but not Chrome. I cleared all the cache, history and all, but still no luck. I need to find the user data file and see what's in there. I'll bet that's where the glitch is. Anyway, I'll find it! Thanks for all the tips!

60
Off Topic / Re: Is this a Mistake?
« on: November 07, 2020, 12:36:18 PM »
As this morning - I did it again... here is how I fix Firefox:
So I was connected on my VPN and clicked my link to join Scriptuo.com... got the "You have been banned" message - even personalized. :)
First, I laughed at myself for doing it again.
Next, I disconnect my VPN.
Then, I go to Firefox Options, Privacy and Security, scroll down to History, Clear History, choose Today (although it may be possible to do it with a different time range - I do not actually care about my history).
Now I can connect again here.

Other browsers that report this may need an adjustment to how this is done.

Gaderian

ARGH! Did all that and nada. This is so dumb. It isn't an addon either. Both browsers (one on each comp) are configured the same and on sync as well so whatever is on one, is on all of them. I will keep hunting. It's likely some little, random thing that will just make me crazy hehe

How funny that happened to you just when we had been talking about it!

Pages: 1 2 3 [4] 5 6