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!

Temporary solution for Hotkey bar skill save issue

Put Community First
Loyal Member
Joined
Oct 2, 2014
Messages
1,112
Reaction score
832
During some playtesting myself and @DevilSpeak did, we found that sometimes skills weren't being saved in the hotkey bar.

This is a non-source fix, which is an SQL statement. The issue itself seems to only happen with some classes and/or skills and this is meant to be a temporary solution.

If anyone has a source fix for the issue, it'd be appreciated in a Release thread. From what I can guess it seems like it sometimes doesn't write the hotkey bar set for the character when its generated?

  1. Look up character ID in TGLOBAL_GSP -> TALLCHARTABLE.
  2. Click 'Edit top 200 rows' in TGAME_GSP -> THOTKEYTABLE.
  3. Run the following query:
Code:
USE TGAME_GSP
GO
INSERT INTO [TGAME_GSP].[dbo].[THOTKEYTABLE] VALUES ([U][I][B]CHARIDHERE[/B][/I][/U], 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
 
Back
Top