ChaosMaxima":4dllt2v3 said:asmodeus":4dllt2v3 said:Hey, I've got a question. In the features list, you say you can use hotkeys and spells? How do you do this. The demo doesn't tell you![]()
Currently, the hotkeys for Skills and Items are 0,1,2,3,4,5,6 etc. on the number pad. If you want to change this, go to the script "NeoABS Settings". Over here, you'll see a code like this:
Code:Skill_Keys = {Input::Numberkeys[0] => 0, Input::Numberkeys[1] => 0, Input::Numberkeys[2] => 0, Input::Numberkeys[3] => 0, Input::Numberkeys[4] => 0, Input::Numberkeys[5] => 0, Input::Numberkeys[6] => 0, Input::Numberkeys[7] => 0, Input::Numberkeys[8] => 0, Input::Numberkeys[9] => 0, Input::Letters["B"] => 0, }
Simply change the Input::NumberKeys[Number] to Input::Letters["A-Z"] (you choose any letter between A and Z)
Thanks! That was exactly what I was looking for.