What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Does UpdateTaxInfo send a request to the server?

Status
Not open for further replies.

Tempura

New Member
Joined
Oct 9, 2014
Messages
81
Reaction score
0
Question:

Does Housing.UpdateTaxInfo send a request to the server to get the information?

Or is the information already on the client somewhere?
 
Does Housing.UpdateTaxInfo send a request to the server to get the information?
Yes, it is. And server return information about taxes\payments
 
Yes, it is. And server return information about taxes\payments

Out, do we know which calls request information from server? And if this is such a call what "standard" game request would look like?
 
Is there any kind of onTaxUpdated event somewhere?

I've been using ArcheBuddy to send the data to anoter app, I don't really need the automated scanning (that might get detected on a busy day), but automating the data collection is still awesome on its own.
 
Is there any kind of onTaxUpdated event somewhere?

I've been using ArcheBuddy to send the data to anoter app, I don't really need the automated scanning (that might get detected on a busy day), but automating the data collection is still awesome on its own.

You can simply read the Housing object (subclass of Creature) that you would get from getCreatures() call. It will have the tax info there if it was ever updated. Zero if update hasn't happened.
 
You can simply read the Housing object (subclass of Creature) that you would get from getCreatures() call. It will have the tax info there if it was ever updated. Zero if update hasn't happened.

Thought about that, but I'd have to loop over getCreatures() over and over to catch the tax updates from pressing F manually. I'm sure it works out fine, it just sounds like the dirtiest way of getting it done :(
 
Only 50-100 creatures at a time. Linear search very fast, just add a Thread.Sleep somewhere.
 
Status
Not open for further replies.
Back
Top