thanks
Forum
CS2D Scripts How to make auto menuHow to make auto menu
9 replies 1
thanks
Or a menu that opens every hour?
Something like "You played for an hour, congratulations, thanks for playing in my server, he's laser, super armor, rcon and my IP"
Being the annoying little brat you were to all of us, I'm not going to help you out even though the script you're asking for is really easy to make.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
playingminute = {} menushown = {} for id = 1, 32 do 	playingminute[id] = 0 	menushown[id] = false end addhook("minute", "minutehook") function minutehook() 	for _, id in ipairs(player(0, "tableliving")) do 		if (not menushown[id]) then 			playingminute[id] = playingminute[id] + 1 			 			if (playingminute[id] == 60) then 				playingminute[id] = nil 				menushown[id] = true 				 				menu(id, "Menu,Button 1,Button 2") -- Your menu here 			end 		end 	end end
@ Rainoth: I was gonna say that your reply wasn't very nice, but then I found you sharing this in another forum. :p
J192 has written
pfff lmao
Admin/mod comment
§2.2 - Only meaningful contributions with added value Quote
I don't care what the fuck you say about my files, the most important thing of getting better is: try and upload shits. I don't care about negative feedbacks, who the fuck they are? I will keep uploading shits, because I'm paint professional! You all are worse than me madafukas. Rainoth is not a moderator and freebanned me because I kept uploading shits and created double accounts.
Ok on-topic check files like HC admin script or blazzing's zombie plague, they have automatic menu part.
1