Script Keys
14 replies



04.12.15 10:45:01 am
So i installed Simonas Dynamic Achievemnts and Statistics script .. the problem is when i press f3/f4 it opens the tabs from The Admin Script 4.0.2.I need help how to put them to another button
edited 1×, last 04.12.15 01:09:09 pm

I'm afraid there's no way to remap the keys unless you edit the LUA script itself.
I love to strike the counter.
Usually you can only use F2, F3, F4.
What you want to search for is the serveraction-addhook line.
there should be sth like this:
What you want to search for is the serveraction-addhook line.
there should be sth like this:
Code:
1
2
3
4
5
6
7
2
3
4
5
6
7
addhook("serveraction","serveractionFunction")
function serveractionFunction(id,button)
if button==1 then -- if f2
elseif button==2 then -- if f3
elseif button==3 then -- if f4
end
end
function serveractionFunction(id,button)
if button==1 then -- if f2
elseif button==2 then -- if f3
elseif button==3 then -- if f4
end
end
Share time limited free games here

You'd want to make a new menu and open it with F2, whereas the button entries will open main menus for either your admin script or
SQ script.
Which is why when I was working on FreeChoice (my admin script), I'd always leave F2 for admin script menu, F3 for mod menu and F4 for additional actions

Which is why when I was working on FreeChoice (my admin script), I'd always leave F2 for admin script menu, F3 for mod menu and F4 for additional actions


Usually you can only use F2, F3, F4.
What you want to search for is the serveraction-addhook line.
there should be sth like this:
What you want to search for is the serveraction-addhook line.
there should be sth like this:
Code:
1
2
3
4
5
6
7
2
3
4
5
6
7
addhook("serveraction","serveractionFunction")
function serveractionFunction(id,button)
if button==1 then -- if f2
elseif button==2 then -- if f3
elseif button==3 then -- if f4
end
end
function serveractionFunction(id,button)
if button==1 then -- if f2
elseif button==2 then -- if f3
elseif button==3 then -- if f4
end
end
Got in lua then core then config as


I'd recommend to use rather an Admin Script which the commands can be used with say rather than with menus. This will prevent any further conflicts between two scripts while pressing a key which opens a menu and so forth.
Aside from this, when you go through the config.cfg file, there are some lines such as these:
This is where you have to edit it (the numbers, not the words themselves). Let's say, if we don't want the buttonpressing_action key, ( 3 - which means F4 in that case) then you can remove that number and leave it for another menu from a script.
Aside from this, when you go through the config.cfg file, there are some lines such as these:
Code:
1
2
3
2
3
CFG_MENU_SERVERACTION_STATISTICS_ACTION = 1
CFG_MENU_SERVERACTION_ACHIEVEMENTS_ACTION = 2
CFG_MENU_SERVERACTION_BUTTONPRESSING_ACTION = 3
CFG_MENU_SERVERACTION_ACHIEVEMENTS_ACTION = 2
CFG_MENU_SERVERACTION_BUTTONPRESSING_ACTION = 3
This is where you have to edit it (the numbers, not the words themselves). Let's say, if we don't want the buttonpressing_action key, ( 3 - which means F4 in that case) then you can remove that number and leave it for another menu from a script.
@
Biusem: Then you did not get my full point at all. Have you took a look by reading the info of
serveraction?
So, if we think a little and translate those action keys then the first action key 1 is F2, 2 is F3 and 3 is F4. If that admin script uses only F3 and F4 buttons then what you have to do is to remove 2 and 3 from these lines that I have mentioned above on my post. As
Yates already said, there aren't other numbers such as 4, 5, etc. - you name it.
P.S: By the way, I'd still recommend for you to use an Admin Script that uses commands with say instead with menus (if you want a quick example then take a look at this -
[Yank] Bass Powertool (Admin Script) (36)).


CS2D.com has written:
action: action key 1,2 or 3

So, if we think a little and translate those action keys then the first action key 1 is F2, 2 is F3 and 3 is F4. If that admin script uses only F3 and F4 buttons then what you have to do is to remove 2 and 3 from these lines that I have mentioned above on my post. As

P.S: By the way, I'd still recommend for you to use an Admin Script that uses commands with say instead with menus (if you want a quick example then take a look at this -


im gonna just install the admin script and that's all.If DC has some freetime and wants to update the game he should really put some more keys.

You can use E and G, I'm not sure about F. For them are USE and DROP hooks + FLASHLIGHT.
EDIT: Unless you are doing Mod for CS2D, not script, then you are able for binds.
EDIT: Unless you are doing Mod for CS2D, not script, then you are able for binds.
edited 1×, last 05.12.15 03:22:44 pm



