Skip to content

Commit

Permalink
A Blank Crown has +50% extra prestige boni (same as colored cloth) / …
Browse files Browse the repository at this point in the history
…All other Crowns have +150% extra prestige boni (same as colored cloth with rose)
  • Loading branch information
Arcurus committed Jan 16, 2024
1 parent e89010b commit 89871d5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions TODO.MD
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,9 @@ Example:
- Rag or Old cloths have halve the prestige boni (still better then nothing)
- Long Dresses have double prestige boni
- Cloaks have double prestige boni (Display of pure decadence)
- A Blank Crown has +50% extra prestige boni (same as colored cloth)
- All other Crowns have +150% extra prestige boni (same as colored cloth with rose)
(Remember that not blank Crowns give additional full +20% prestige boni from followers)

Example: Red Cloak --> (50% (initial) + 50% (Red)) X 2 since cloak = 200% (X0.4 since covers 40% of body = 50% boni)

Expand Down
8 changes: 5 additions & 3 deletions openlife/settings/ServerSettings.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1601,9 +1601,11 @@ class ServerSettings {
ObjectData.getObjectData(693).extraPrestigeFactor = 0.2;

// Increase General prestige gain
ObjectData.getObjectData(695).prestigeFactor = 1;
ObjectData.getObjectData(694).prestigeFactor = 1;
ObjectData.getObjectData(693).prestigeFactor = 1;
ObjectData.getObjectData(695).prestigeFactor = 1.5;
ObjectData.getObjectData(694).prestigeFactor = 1.5;
ObjectData.getObjectData(693).prestigeFactor = 1.5;

ObjectData.getObjectData(692).prestigeFactor = 1; // Crown Blank

ObjectData.getObjectData(700).clothing = "n"; // Leaf Crown with Leaf 700 is not to wear

Expand Down
Binary file modified server.hl
Binary file not shown.

0 comments on commit 89871d5

Please sign in to comment.