Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

[EO] Resource Tools


Fewws
 Share

Recommended Posts

So with eo you get mining (pickaxe) fishing (rod) wood cutting (axe)…
i was wondering... what if i want to make a herb picking resource tool... for exmaple herbs (leather gloves) how do i add a new tool?
Link to comment
Share on other sites

You will need VB6\. If you do, you go into frmEditor_Resource and hit CTRL+F. Type in scrlTool.Value and below that it should have:
Case 0
            Name = "None"
        Case 1
            Name = "Hatchet"
Etc, Etc, Etc.

You just add another case to it.
Example:
        Case 0
            Name = "None"
        Case 1
            Name = "Hatchet"
        Case 2
            Name = "Rod"
        Case 3
            Name = "Pickaxe"
        Case 4
            Name = "Hammer"
        Case 5
            Name = "**New tool**"

This should add it into the form itself. You will also wanna go into the form itself, where it shows the buttons and etc, and you find the spot where it has the tools listed, then at the side where the properties are, find "list" and add your "**New Tool**".
Hope that helps..

(Sorry, can't open the form itself, so I am trying to do it through the code)

@sherlock:

> I dont know,  but also how do you placer resourses??

When editing your map, it's an attribute. It's called "Resource".
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...