[Logo]
 
  [Search] Search   [Recent Topics] Recent Topics   [Members]  Member Listing   [Groups] Back to home page 
[Register] Register / 
[Login] Login 
Proposal: Low level player skills  XML
Forum Index -> Druids RPG Development Go to Page: Previous  1, 2, 3
Author Message
Szlat

Wicked Sick!

Joined: 05/18/2005 18:32:41
Messages: 2124
Location: UK
Offline

I noticed when I was testing some stuff that I was getting lots of errors logged in my client-side log for "Accessed None 'DataObject'", due to the low-level additions. The lines similar to

Code:
if (StatsInv != None && StatsInv.DataObject.Level <= default.MediumLevel)
 

need changing to
Code:
if (StatsInv != None && StatsInv.DataObject != None && StatsInv.DataObject.Level <= default.MediumLevel)
 

since DataObject is server side only.

I will fix in cvs later today.
 
Forum Index -> Druids RPG Development Go to Page: Previous  1, 2, 3
Go to: