• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Temporary solution for Hotkey bar skill save issue

Put Community First
Loyal Member
Joined
Oct 2, 2014
Messages
1,115
Reaction score
833
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