https://cso.fandom.com/wiki/X-TRACKER I wanted to make a suggestion that you could add this again. Of course, I don't need to explain much about the gun, you know because it has already been added to the server. I think it could be a good weapon again for the server update.

Weapons Suggestion
-
-
And this zombie can be on the server as before https://cso.fandom.com/wiki/Sting_Finger Because I saw that it is possible that the power of a human is slightly different from that of a zombie, you can also add this, which would be a good update for the zombie https://cso.fandom.com/wiki/Sting_Finger
I see in some maps that normal zombies are not able to go to the top of some buildings that even VIP HALF players can go to, and this is where a very big difference between zombies and humans arises, so I think that's why We need this zombie for its strong jumping ability, and even in some maps, normal players can go up, but zombies can do it with great difficulty. It is also good for humans for another reason: this zombie does not lower its head, making it very easy to headshot.
-
If you don't want to add the Gani twice, this is a great alternative, or you can add two https://cso.fandom.com/wiki/Photon_Launcher
-
And I have more suggestions here for you to think about, I hope they're helpful.
-
https://cso.fandom.com/wiki/Dual_Beretta_Gunslinger This could be a good thing because I see some people not using Gunslinger very much anymore. You could replace or add this for variety. There are different types, their photos are missing, but I'll send one of them.
-
And I recently noticed that the Crossbow Classic gun is very good for that level and has good power, but it's not used much. You can replace it or add it, but I think you should lower it a few levels to create variety for people who are at a lower level. https://cso.fandom.com/wiki/Crossbow_Classic I recommend the gold color.
-
https://cso.fandom.com/wiki/Sylphid Of course, if you think there is no need to replace or add the Gunslinger Gun, you can add this for variety. Of course, I put too many Guns, so add at least 2 or 3 Guns.
-
If you don't agree with something, please tell me why and don't close the typo quickly. I would appreciate it. Those were all my suggestions. Thank you for your good server and good luck. If you answered, I'd like to share my thoughts, maybe it was useful for you.
-
- Official Post
1. You didn't provide any plugins, just links to the fandom
2. Half of those we're already added but had to be removed due to bugs
Although it would be nice to add some of these guns, as I said you provided 0 files.
X-Tracker - if we find the files for it then i guess, but i think it was already on the sv wayy back and got removed because of bugs/crashing
Sylphid - Sprite heavy, I don't think it would work on our serverCrossbow recolor is meh, i don't see a reason that it should get replaced since ours looks better
I believe there is a different version of dual berettas in testing.
Photon Launcher - Same case as Sylphid
Next time try to find the plugin files for these weapons instead of pictures and links to forums.
-
I'll try to send you the weapon plugin file now.
-
Sting Finger Zombie What do you think about this? Where can I find the plugin file?
-
[Suggestion / Subplugin Request] Sting Finger & Venom Guard - AlliedModders
ZP Extra Item - X-TRACKER для CS 1.6www.tb-team.comHere are the links to the sites, and if they don't work, I can give you another link.
-
In my opinion, this zombie is very necessary for the server and Gun is also very useful. Think about it and if you don't want to tell me, maybe my words will be useful.
-
- Official Post
Stinger was already added on the server, removed due to bugs.
-
OH okay, I'll tell you what you think about Gun. Can you add it or give me a plugin from somewhere else?
-
- Official Post
X-TRACKER got removed due bug
Sting Finger was in server and removed due bug
Photon Launcher It has to much resources which will cause the server crash
Dual Beretta Gunslinger and Crossbow already in server
Sylphid It has to much resources i dont think we will add it
-
Someone should fix this version and test it to see if it works for the server.
-
Look, I'm testing it. Maybe I can run the plugin. I need some time.
-
// Sting Finger Zombie Plugin
//Hello friends,
This is a plugin code to add the Sting Finger zombie to the CSO MOD server, which has the main features of this zombie:
More speed than a normal zombie
Lower gravity and therefore higher jump
Ability to change to this zombie with a simple command (/sf)
The code is quite simple and expandable, and you can create a more realistic experience by adding appropriate models and images. I couldn't test it, but I made a code for you. Does it help?
#include <amxmodx>
#include <fakemeta>#define ZOMBIE_STING_FINGER 3
public plugin_init()
{
register_plugin("Sting Finger Zombie", "1.0", "amirhosin1243563");
register_event("player_spawn", "onPlayerSpawn");
register_cmd("say /sf", "cmd_stingfinger", 0);
}public onPlayerSpawn(id)
{
if (is_user_alive(id))
{
set_user_class(id, ZOMBIE_STING_FINGER);
set_user_speed(id, 280);
set_user_gravity(id, 0.7);
client_print(id, print_chat, "You are now Sting Finger Zombie!");
}
}public cmd_stingfinger(id)
{
if (!is_user_alive(id)) return PLUGIN_HANDLED;
set_user_class(id, ZOMBIE_STING_FINGER);
set_user_speed(id, 280);
set_user_gravity(id, 0.7);
client_print(id, print_chat, "You switched to Sting Finger Zombie!");
return PLUGIN_HANDLED;
} -
-
Participate now!
Don’t have an account yet? Register yourself now and be a part of our community!