SphereServer BugTracker - SphereServer
View Issue Details
0002199SphereServerexecutable - windows buildpublic02-09-13 06:1703-09-13 00:07
Coruja 
Ben 
normalmajoralways
resolvedfixed 
 
0.56c Nightly 
Automated (specify build number)
None
None
0002199: All resource gathering skills doesn't works [MAJOR BUG]
on latest nightly build (starting on 01 and 02 sept 2013), all resource gathering skills doesnt work (mining, fishing, lumberjack, etc), it always says that theres nothing to gather on that location

using mining as example, the mr_iron, mr_verite, mr_etc is always created with amount=0, so even if the resource is found, theres will be nothing left to gather

--------------------------------

debugging this thing I found something strange

[EVENTS e_event_on_player]
ON=@RegionResourceFound
SYSMESSAGE [DEBUG] You found a <ARGO.NAME> spawn (amount=<ARGO.AMOUNT>)

on the debug message everything is perfectly fine, since I can found worldgem bit spawns with amount 1~3 as it should be. But stangely -after- the end of this trigger, something set the worldgem bit amount to 0, so here's the error
Temporary workaround to fix it:

[EVENTS e_event_on_player]
ON=@RegionResourceFound
ARGO.TIMERF 1,AMOUNT=<ARGO.AMOUNT>

//the first try will always fail (amount=0), then after 1 second the resource amount got fixed and it will start working (horrible workaound, but its better than nothing)
No tags attached.
Issue History
02-09-13 06:17CorujaNew Issue
03-09-13 00:07BenNote Added: 0001645
03-09-13 00:07BenStatusnew => resolved
03-09-13 00:07BenFixed in Version => 0.56c Nightly
03-09-13 00:07BenResolutionopen => fixed
03-09-13 00:07BenAssigned To => Ben

Notes
(0001645)
Ben   
03-09-13 00:07   
A simple = instead of == in an IF statement cause the trigger to always return true, which then caused the gembit amount to be set to 0.

Should be fixed now