Ok, well, I gave up on a perma so now I was able to last for more than 5 minutes

Anyways, I saw your station and got the account- two things:
1. Can I request a wireless credit card when you sign up for an account? It would have a DS that would let you specify what amount to withdraw, or deposit.
2.
Code: Select all
<OnGlobalPlayerEnteredSystem>
(block Nil
(sysAddObjRecurringTimerEvent 10800 (sysFindObject Nil "Nt+unid:0xD0240004") "CIGInterest")
)
</OnGlobalPlayerEnteredSystem>
Means that for every time I gate, that event is added repeatedly. That could explain why I got 400000 credits while mining and travelling back to Eridani to stash the loot.
A way to fix it would be to (ObjSetData gPlayership "CIGIntEvent" True) then redoing the OnGlobalPlayerEnteredSystem to be:
Code: Select all
<OnGlobalPlayerEnteredSystem>
(block Nil
(if (not(ObjGetData gPlayership "CIGIntEvent" true))
(block Nil
(sysAddObjRecurringTimerEvent 10800 (sysFindObject Nil "Nt+unid:0xD0240004") "CIGInterest")
(ObjSetData gPlayership "CIGIntEvent" true)
)
)
)
</OnGlobalPlayerEnteredSystem>
I have now cleared that event from my ship and hopefully I get to have an account that doesn't insta-give me money

EDIT: (ObjGetData gPlayership "CIGIntEvent" true) should be (ObjGetData gPlayership "CIGIntEvent")