edited 1×, last 04.12.15 01:09:09 pm
Forum
CS2D Scripts Script KeysScript Keys
14 replies 1
What you want to search for is the serveraction-addhook line.
there should be sth like this:
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
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
Bowlinghead has written
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:
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
Got in lua then core then config as SQ Said but i dont know where to edit bcuz im a n00b at LUA :<
Aside from this, when you go through the config.cfg file, there are some lines such as these:
1
2
3
2
3
CFG_MENU_SERVERACTION_STATISTICS_ACTION = 1 CFG_MENU_SERVERACTION_ACHIEVEMENTS_ACTION = 2 CFG_MENU_SERVERACTION_BUTTONPRESSING_ACTION = 3
There is no 4 or up.
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 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)).
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
1