[FIXED] Resource-harvesting (fruit, wheat, etc) is broken

Here we stuff all the bugs we've managed to squash/squish/squelch.
Locked
User avatar
Xuri
Site Admin
Posts: 3704
Joined: Mon Jun 02, 2003 9:11 am
Location: Norway
Has thanked: 48 times
Been thanked: 8 times
Contact:

Resource-harvesting (fruit, wheat, etc) is broken

Post by Xuri »

In UOX3 0.98-3.4, the resource-harvesting scripts do not get initialized properly because it's no longer possible to do SetTag( "initialized", true ), for some reason. Thus they do not count down the resources you harvest, and never run out of resources.

Fixed versions of those scripts are up on the CVS for next version. To fix manually, change SetTag( "initialized", true" to SetTag( "initialized", 1 ).
-= Ho Eyo He Hum =-
giwo
Developer
Posts: 1780
Joined: Fri Jun 18, 2004 4:17 pm
Location: California
Has thanked: 0
Been thanked: 0

Post by giwo »

hmm, true is a boolean value, so it should work...
Scott
User avatar
Xuri
Site Admin
Posts: 3704
Joined: Mon Jun 02, 2003 9:11 am
Location: Norway
Has thanked: 48 times
Been thanked: 8 times
Contact:

Post by Xuri »

Doesn't, though. Scripts didn't work until I changed true to 1 :|
-= Ho Eyo He Hum =-
giwo
Developer
Posts: 1780
Joined: Fri Jun 18, 2004 4:17 pm
Location: California
Has thanked: 0
Been thanked: 0

Post by giwo »

SetTag() will once again accept boolean values in my next CVS commit.

[EDIT]

Nevermind, bool values will work fully with the next Commit. :)
Scott
Locked