View Single Post
  #1  
Old 01-29-2015, 12:17 AM
provocating's Avatar
provocating
Demi-God
 
Join Date: Nov 2007
Posts: 2,175
Default AA - account_time_required

Anyone know anything about the column account_time_required in alternate advancement? I tried converting a few days into Unix Time thinking that is what it wanted, but that did not work.

There are a few references in aa.cpp, but it was not helpful.

Code:
if(aa2)
	{
		if(aa2->account_time_required)
		{
			if((Timer::GetTimeSeconds() + account_creation) < aa2->account_time_required)
			{
				return;
			}
		}
	}
It looks like you have to put a future time into this field to make it available, that is not very helpful if that is the case. Is there a way to make an AA available after a certain amount of account days.
Reply With Quote