I'm kinda stumped here. Everything works fine with Owltr/FS ATS except my players cannot mine Stone (Granite) after reading the book for it and setting the tool to mine it and ore. Custom ore and Gem mining is just fine.

Any pointers?

Thanks!
 

Attachments

  • Mining.txt
    20.7 KB · Views: 4
  • HarvestSystem.txt
    21 KB · Views: 3
  • HarvestVein.txt
    1.2 KB · Views: 2
Hopefully some one will help you with this, I have never worked (merged) OWLTR in the past. One thing after reading the stone book and setting the shovel or pick to both ore and stone. With [props on the player does it show stonemining true and toggleminingstone true also?
 

Attachments

  • adev.uoquint.ru_images_overview_centred07.jpg
    adev.uoquint.ru_images_overview_centred07.jpg
    16.6 KB · Views: 4
  • adev.uoquint.ru_images_overview_centred06.jpg
    adev.uoquint.ru_images_overview_centred06.jpg
    18.4 KB · Views: 4
  • adev.uoquint.ru_images_overview_centred05.jpg
    adev.uoquint.ru_images_overview_centred05.jpg
    21.1 KB · Views: 3
  • adev.uoquint.ru_images_overview_centred04.jpg
    adev.uoquint.ru_images_overview_centred04.jpg
    21 KB · Views: 3
  • adev.uoquint.ru_images_overview_centred03.jpg
    adev.uoquint.ru_images_overview_centred03.jpg
    12.1 KB · Views: 3
  • adev.uoquint.ru_images_overview_centred02.jpg
    adev.uoquint.ru_images_overview_centred02.jpg
    13.4 KB · Views: 5
  • adev.uoquint.ru_images_overview_centred01.jpg
    adev.uoquint.ru_images_overview_centred01.jpg
    12.5 KB · Views: 4
  • adev.uoquint.ru_images_overview_logo_uocentred.jpg
    adev.uoquint.ru_images_overview_logo_uocentred.jpg
    38.1 KB · Views: 4
  • Like
Reactions: Doc
Thanks for replying Milva. I had this problem once beofore. The only way I found after picking over everything to allow granite to be mined again was to revert back to the old version of Daat99.. kinda odd. I'm sure it is something simple I'm missing that has changed or I forgot a line.. but I've poured over the merges and don't really see anything out of place. Yeah it does show the props as stonemining and toggleminingstone set to true. Gem mining works perfectly. I'll probably download a clean pull from git and try the merge again. Seems like starting from scratch often helps me catch something.

Thanks a bunch!
 

Attachments

  • adev.uoquint.ru_images_overview_logo_essenceucs.png
    adev.uoquint.ru_images_overview_logo_essenceucs.png
    27.9 KB · Views: 0
Hope you can get it worked out, I went over the 3 files and it seemed as though granite was listed where it should be. But then I'm not sure what was merged, sorry I couldn't help out more :)
 
  • Like
Reactions: Doc
Hey, I sure do appreciate the time. I'll figure it out here sooner or later ;)
 

Attachments

  • arefresh.nflint.com_files_attach_images_107_637_004_aa9dd20545c490babe36c5c2b53fe9c5.gif
    arefresh.nflint.com_files_attach_images_107_637_004_aa9dd20545c490babe36c5c2b53fe9c5.gif
    71.2 KB · Views: 48
Seems to actually be something in 2.3 thats causing issues with OWLTR. Granite mining works fine in 2.3 w/o OWLTR, its just with. Daat99 is aware of it & will begin working on it shortly.
 
Fixed by adding the following code to GetDaat99HarvestedType method in ResourceHelper (before the current return code): line 68
Code:
if (originalType.IsSubclassOf(typeof(BaseGranite)) && info.ResourceTypes.Length > 2)
    return info.ResourceTypes[2];
 
  • Like
Reactions: Doc
Thank you! Sorry for the late reply, but I've been in the hospital 9 days. Doing well now. Good news to come back to :D
 
I was just wondering , how the heck do you start implenting the owltr system in servuo?
if i open the files with winmerge but the wole files seem different , guest it won't just be a copy paste job either.
 
If the package is in zip or rar forum, you will need to open this first
You will need winmerge in order to compare and change runuo files and owltr files, it won't be easy. Not unless some one will share their completed files :)
 
I think we aren't talking about the same thing Milva.
I know how to add them to runuo using winmerge and how to unrar / unzip files.

It's just when I open a file from the owltr and one from servuo winmerge shows it as 2 totally different files.

tnx for the help
 
So they both don't look as a cs script? Guess I'm not quite sure what you mean then :/ sorry.
 
Hello byaccident, I know what you are talking about with winmerge, I am gonna tell you my setting in winmerge maybe it will help you. You will still see alot of yellow but not whole different files.

One thing that causes that is dotnet 4 things they introduced into servuo.

Ok here we go, open winmerge then under edit then options, under options then compare then general. make white space = ignore all. then under that check ignore blank lines, ignore case, ignore carriage return differences and match similar lines. Hope that helps you out some, it sure helped my merges so every file wasn't all yellow.
 
Back