Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

WZ how can i find this

Newbie Spellweaver
Joined
Feb 12, 2020
Messages
6
Reaction score
0
Is there any way to change the font size of stringpools
 
Last edited:
Custom Title Activated
Loyal Member
Joined
Jan 18, 2010
Messages
3,109
Reaction score
1,139
the strings themselves are stringpools. you can use STREDIT to change them. their font is also a stringpool (Tahoma). as for the background color, that's a client edit.

Code:
618;" ONE-HANDED SWORD"
619;" ONE-HANDED AXE"
620;" ONE-HANDED MACE"
621;" DAGGER"
622;" WAND"
623;" STAFF"
624;" TWO-HANDED SWORD"
625;" TWO-HANDED AXE"
626;" TWO-HANDED MACE"
627;" SPEAR"
628;" POLE ARM"
629;" BOW"
630;" CROSSBOW"
631;" CLAW"
632;"KNUCKLE"
633;"GUN"
634;"HAT"
635;"FACE ACCESSORY"
636;"EYE ACCESSORY"
637;"EARRING"
638;"OVERALL"
639;"TOP"
640;"BOTTOM"
641;"SHOES"
642;"GLOVE"
643;"CAPE"
644;"SHIELD"
645;"RING"
646;"PENDANT"
647;"MEDAL"
648;"BELT"
661;" FASTEST"
662;" FASTER"
663;" FAST"
664;" NORMAL"
665;" SLOW"
666;" SLOWER"
667;" SLOWEST"
668;"IT'S A GIFT FROM '%s'"
669;"AVAILABLE FOR %d DAYS."
670;"AVAILABLE FOR 4 HOURS."
671;"AVAILABLE FOR %d HOURS."
672;"USABLE UNTIL %d-%d-%04d AT %02d : %02d"
673;"ATTACK SPEED :"
674;"WEAPON ATTACK :"
675;"MAGIC ATTACK :"
676;"WEAPON DEF. :"
677;"MAGIC DEF. :"
678;"ACCURACY :"
679;"AVOIDABILITY :"
680;"HANDS :"
681;"SPEED :"
682;"JUMP :"
683;"Swimming speed : +%d"
684;"THE RATE OF KNOCK-BACK :"
685;"NUMBER OF UPGRADES AVAILABLE :"
 
Custom Title Activated
Loyal Member
Joined
Jan 18, 2010
Messages
3,109
Reaction score
1,139
Thanks. Is there any way to change the font size? with localhost083 client

Pretty sure the font size is just the font height set in IWzFont::Create. The default is font size 12, so you'll need to change that to whatever size you'd like. The address for get_basic_font in v83 is 0098A707 and the address for CUIToolTip::CUIToolTip in v83 is 008E49B5. Those two are probably the most important functions that initialize fonts.

For example, here's some random font Nexon calls pFontHL_Orange in CUIToolTip::CUIToolTip:
heyzhuliya - how can i find this - RaGEZONE Forums

Just need to change that "12" to the new size. You'd have to mess around with which font to change, but that's the gist of how it works.

EDIT: Actually after scrolling through the tooltips I realized not all are 12. Some are 9 and 11.. You'll probably want to be changing the pFontStan_Num and pFontStan_Prp? (008E557A & 008E565E) That's my best guess, at least.
 
Last edited:
Back
Top