SphereCommunity
Mining better ore with better pickaxe - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: Script Help (/Forum-Script-Help)
+--- Thread: Mining better ore with better pickaxe (/Thread-Mining-better-ore-with-better-pickaxe)



Mining better ore with better pickaxe - Monty - 06-11-2013 11:42 PM

Hi can somebody tell me how i can do this:
With basic pickaxe I can mine basic ores, but with better I can mine basic and some better ores.

I always used set better ore skillmake 110.0 and better pickaxe give to player +10 mining but this is stupid. How i can to this with 60.0 skill or something like that.

I will be thankful for every idea.


RE: Mining better ore with better pickaxe - Shidhun - 06-12-2013 01:53 AM

A possible solution could be something like this.

[REGIONRESOURCE mr_iron]
// default mining result.
// t_rock
SKILL=5.0,50.0
AMOUNT=5 25
REAP=i_ore_iron
REAPAMOUNT=3 12
REGEN=60*60
ON=@ResourceFound
IF (<src.findid(i_your_special_pickaxe_defname)>)
OBJ.f_setresource mr_iron
ELSE
OBJ.f_setresource mr_special_ore
ENDIF

[FUNCTION f_setresource]
FORITEMS 0
IF (<BASEID>==i_worldgem_bit) && (<TYPE>==t_ore)
MORE1=<ARGV[0]>
AMOUNT={4 9} // only necessary if you want other amounts
RETURN 0
ENDIF
ENDFOR
RETURN 1


RE: Mining better ore with better pickaxe - Monty - 06-12-2013 06:26 AM

I had to edit a little your script but you have one hundred time thank you. Perfect script I give you rep. Rly thx.