Sassy is a joke. But, it's not too bad if you actually know how to use it.
function Sassy::getData(%this, %ID)
{
for(%a = 0; %a <= %this.dataCount; %a++)
{
if(%this.data[%a].ID == %ID)
return %this.data[%a];
}
return 0;
}
Iban coded the mod to call the function every time you need to edit or view data when you could just define it on the client when they connect.
Not to mention the horrendous format it saves data in and it doesn't support offline data at all.