Forum
General
How to make cs2d script, vote a map pressing F4
How to make cs2d script, vote a map pressing F4
10 replies
1

The second question should be asked in the Lua help thread.
Refresh has written
go to options and controls 

crister_012 said:
Me need to make script no to put at Controls
The main hook you require is serveraction(id, title, button).
As for the menu it's 'menu(id, "title, id, b1,b2,b3...,b9").
I recommend adding @b to the end of the title (bigger menu).
And | Info after the end of the button. (Caption and sub-caption.)
You need to think about...
---> Same number of votes return?
---> No one votes return?
---> What maps are being selected?
---> How many maps are there to vote from?
Good luck, I already have a 5 vote map script, except it picks 5 random maps from cs2d/maps, and it's trigger on the 15th round and switches on 16th.
1
2
3
4
5
6
2
3
4
5
6
addhook("serveraction","rr_act")
function rr_act(id,action)
	if action == 3 then
		menu(id,"Menu,1,2,3,4,5,6,7,8,9")
	end
end
edited 1×, last 18.12.10 07:32:49 pm
1

Offline