Work: Difference between revisions

From Eclesiar
Jump to navigation Jump to search
Luc (talk | contribs)
mNo edit summary
No edit summary
 
Line 26: Line 26:
     5
     5
) </pre>
) </pre>
__NOTOC__

Latest revision as of 20:50, 7 September 2025

Getting your job is another fundamental aspect in Eclesiar. By doing this, you'll be able to get your money and start your ascension. When you join a country, you'll start with no job. You'll have to go on the job market, to look for one. You can access on the menu: My Places > Business > "Find a Job" button OR Market > Job Market.

You'll have the name of the company, the gross salary and your net salary.

In this example, the company "Guns", offers you a job which pays 25 IEP of Gross Salary. This is the entire value of the offer. Offers can require a minimum economic level. Here, everyone can land the job.

It will also show the Net Salary, which represent the actual ammount of money you will receive. This ammount has already deducted your country's work tax. In this example, your Net Salary will be 20 IEP.

All of these offers can be influenced by your country's minimum salary, work tax, which will be all set by your Congress members.

You can work once per day. The working timer resets at midnight, server time.

By working, you also increase your economic skill and it grows based on that formula


 NEW_ECONOMIC_SKILL = CURRENT_ECONOMIC_SKILL + (1 / math.log(CURRENT_ECONOMIC_SKILL + 2)) / (
    30 if CURRENT_ECONOMIC_SKILL > 60 else 
    20 if CURRENT_ECONOMIC_SKILL > 56 else 
    15 if CURRENT_ECONOMIC_SKILL > 50 else 
    10 if CURRENT_ECONOMIC_SKILL > 40 else 
    8 if CURRENT_ECONOMIC_SKILL > 30 else 
    5
)