edited 1×, last 04.12.15 12:09:09 pm
Forum
Scripts
Script Keys
Script 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
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
Bowlinghead has writtenUsually 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
GeoB99 Didn't work :<.. edited 1 to 4,edited 2 to 5 and then edited 3 to 6.
There is no 4 or up.
Biusem: Then you did not get my full point at all. Have you took a look by reading the info of
serveraction? CS2D.com has written
action: action key 1,2 or 3
action: action key 1,2 or 3So, 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 -
EDIT: Unless you are doing Mod for CS2D, not script, then you are able for binds.
edited 1×, last 05.12.15 02:22:44 pm
1

Offline