From f3591e7281470ea16deb4651c9db739fba6c250b Mon Sep 17 00:00:00 2001 From: Catalin Novgorodschi <1140613+Shadowss@users.noreply.github.com> Date: Thu, 2 Apr 2026 14:13:09 +0300 Subject: [PATCH] Credits refactored --- Templates/version.tpl | 13 ++- version.php | 204 +++++++++++++++++++++++++++++++++--------- 2 files changed, 172 insertions(+), 45 deletions(-) diff --git a/Templates/version.tpl b/Templates/version.tpl index 8bb1762e..9c427f68 100644 --- a/Templates/version.tpl +++ b/Templates/version.tpl @@ -1,5 +1,10 @@ -
-

TravianZ VERSION CREDITS

-
- +
+

ÂŠī¸ Credits & Acknowledgements

+
+

Standing on the shoulders of giants.

+

+ Our project is a continuation and adaptation of a classic game emulator. + We owe immense gratitude to the original developers who paved the way. + Their foundational work has been invaluable in creating this experience. +

diff --git a/version.php b/version.php index db24f908..1e677a0e 100644 --- a/version.php +++ b/version.php @@ -66,47 +66,169 @@ else $building->procBuild($_GET);
-
-1. ronix - For coding above and beyond the call of duty
-2. Dzoki - Version starter
-3. Shadow - For coding above and beyond the call of duty
-4. Advocaite - For coding above and beyond the call of duty
-5. yi12345 - It's always a pleasure
-6. NarcisRO - bug hunter
-7. brainiacX - For being able to code, when we needed code the most
-8. InCube
-9. akshay9
-10. KFCSpike
-11. nean
-12. hexcoded
-13. SlimZ
-14. inblackhole
-15. elio - Your advise is always welcome
-16. AL3XAND3R or MisterX - For keeping the faith
-17. Mr.php
-18. Akakori
-19. G3n3s!s
-20. JimJam
-21. LoppyLukas
-22. Dixie
-23. ZZJHONS
-24. songeriux
-25. TTMMTT
-26. Donnchadh
-27. DesPlus
-28. Marvin
-29. noonn
-30. Armando
-31. aggenkeech
-32. Niko28
-33. 221V - Developer
-34. martinambrus - alumni developer
-35. iopietro - alumni developer
-36. Vladyslav - rigorous game tester
-37. AL-Kateb - alumni developer

-
Released by: TravianZ Team

-Visit: RageZone.com

-
Download from Github
+
+

đŸ›ī¸ Honoring the Original Developers

+ +
+ +
'.$dev[0].'
+
'.$dev[1].'
+
'; +} + +// Cardul "Others" pentru restul +$others = array_slice($developers, 9); +$others_text = ''; +foreach($others as $dev){ + $others_text .= $dev[0] . " — " . $dev[1] . "
"; +} + +echo '
+
+ '.count($others).' Others
+
'.$others_text.'
+
'; +?> +
+ +