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!

Stone key Set for CN/JP

Master Summoner
Joined
Nov 11, 2012
Messages
573
Reaction score
137
This little script sets the Q and E button to the bar by default. So those of you using the client with stones can use this to auto set the stones to the bar.

Enjoy.

EDIT: It also sets back to S and backwards to X. So you can run either way. Not walk backwards.

Code:
update World00_Character.dbo.tKeyMapInit
set nASCIICode = 81
where nFunctionNo = 57

update World00_Character.dbo.tKeyMapInit
set nASCIICode = 69
where nFunctionNo = 58

update World00_Character.dbo.tKeyMapInit
set nASCIICode = 83
where nFunctionNo = 28

update World00_Character.dbo.tKeyMapInit
set nASCIICode = 88
where nFunctionNo = 29

select * from World00_Character.dbo.tKeyMapInit
Where ((nFunctionNo = 57) or (nFunctionNo = 58) or (nFunctionNo = 28) or (nFunctionNo = 29))
 
Last edited:
Back
Top