Of course there are few bugs but we can fix them. It's gonna be awesome server I think!
Forum
CS2D General CS2D World communityOf course there are few bugs but we can fix them. It's gonna be awesome server I think!
ps: mrc didnt pay me for replying (yet)
@waldin ty, I released a new update today with some adjustments and additions. Some of them you can see in my first post of the topic. Now it makes more sense to work as a team because you can get extra points for you and for your team by accomplishing the objectives.
I'd like to play it when I'll be about getting better things when I win a game or so. The global elite, eh... I want some visual things, cowboy! And I can help you with it.
edited 1×, last 18.04.18 12:50:38 am
I'd rather make a button which you can press.
edited 1×, last 17.04.18 11:59:14 pm
But idk if I'll be able to do this, probably will need some help.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
parse("mp_hudscale 1") addbind("mouse1") addhook("key", "ReadyButton_key") addhook("clientdata", "ReadyButton_clientdata") addhook("startround","ReadyButton_startround") function ReadyButton_key(id, key, state) 	if (key == "mouse1" and state == 1) then 		reqcld(id, 0) -- Disable this call in match 	end	 end function ReadyButton_clientdata(id, mode, x, y) 	if (x > 325 and x < 525 and y > 400 and y < 450) then 		playerButtonState[id] = not playerButtonState[id] 		if (playerButtonState[id] == true) then 			imagealpha(playerButtonImage[id], 1) 		else 			imagealpha(playerButtonImage[id], 0.3) 		end 	end end -- Image Stuff playerButtonImage = {} playerButtonState = {} function ReadyButton_startround() 	for id = 1, 32 do 		img = image("gfx/accept.jpg", 425, 420, 2, id) 		imagescale(img, 0.5, 0.5) 		imagealpha(img, 0.3) 		playerButtonImage[id] = img 		playerButtonState[id] = false 	end end ReadyButton_startround()
Image:
edited 6×, last 18.04.18 06:00:14 am
A UI that will show players their statistics, their rank and skin inventory. Pretty much like SQ's Dynamic Achievements and Statistics Script (2.0) (80) got it as well and many people liked that already.
Even though, I'm not sure you want something like this since I see you mainly do things about competitive and gameplay.
- Improve the ACCEPT button effects
- A HUD that shows players health and weapon for spectators when the match is live
- Add a rank image next to the players name and money on startround
Sorry, I won't do more features for now. Maybe SQ can do all that and more if he decide to make competitive game again. My plan was to make something similar to csgo's matchmaking and I did, it's fully functional.
edited 1×, last 18.04.18 08:01:56 pm
mrc has written
There's no way improving it without making a window and putting that button inside. It'll always have bad looking otherwise. The UI is a good thing for a good purpose. - Improve the ACCEPT button effects
mrc has written
I wouldn't add that if I were you. It is more original showing them their ranks inside a CS2D style menu than showing near themselves. Or should I have understood something else by "players name"? Add a rank image next to the players name
For example:
[Silver I] Player $800
[Silver Elite] Player 2 $800
[Gold Nova II] Player 3 $800
[Silver Elite Master] Player 4 $800
[Master Guardian I] Player 5 $800
edited 5×, last 19.04.18 12:28:25 am
mrc has written
Those are just images, it is only me calling them as window. They will press F2 and a small window will show up which would be saying their statistics, ranks and as well as their skins if there is. And perhaps you may put that "ready" button there so it will no more be making my eyes bleed out while it stands middle of the screen.I don't know how to do that, the window thing.
@ BcY: Depends on how you code and how many images are you going to use and I don't think there would be that many in this case.
@ mrc: It is a very argumentative thing when you say that they are "useless". Do what you're gonna do yet it'll only be ugly in my opinion.
edited 1×, last 19.04.18 12:28:41 am
This competitive game is disaster. One person left and our team had 1 player disadvantage, then some new people started joining and leaving. Server banned about 15 people in 5 minutes. Also I'm not able to see whether I have already "accepted" match. At the moment it doesn't work properly at all. Points system is also very unbalanced and boring.
edited 5×, last 20.04.18 08:15:21 am