Solved Request GamePlay Addons

Unpaid Requests, Public Plugins
Post Reply
johnnysins2000
Veteran Member
Veteran Member
Paraguay
Posts: 678
Joined: 7 years ago
Location: Paraguay
Contact:

Request GamePlay Addons

#1

Post by johnnysins2000 » 7 years ago

U want to request ZE DEV TEAM for Some Game play Add-ons

1- ZE Addon Coin Change (ZP AMMO Change)

Like in ZP When a Person Earns Ammo Packs it shoes a Hud [+1 Ammo Pack] I want a same similar Plugin for Coins As Well [+1 Coin]

2- ZE Addon Aim Info

When U aim at a person it will show his Info About his health class And Coins

3- ZE Addon Ghost

https://zombie-mod.ru/counter-strike/zo ... erver.html

https://zombie-mod.ru/counter-strike/zo ... quito.html

Some Ghost or mosquitoes flying in server Will make it attractive

Hope U like These ideas :)
Nobody Is That Busy If They Make Time :roll:

User avatar
Night Fury
Mod Developer
Mod Developer
Posts: 677
Joined: 7 years ago
Contact:

#2

Post by Night Fury » 7 years ago

1st Request:

Code: Select all

#include <zombie_escape>

new ammo[3][33], string[21], ammopacks

public plugin_init()
{
	register_plugin("[ZE] Addons: EC Change", "2.0", "ZETA [M|E|N]")
	register_logevent("round_start", 2, "1=Round_Start")
}

public round_start()
{
	new players[32], num, i
	get_players(players, num, "ach")
	
	for(i = 1; i < num; i++)
	{
		ammo[0][players[i]] = ze_get_escape_coins(players[i])
	}
}

public client_putinserver(id)	set_task(3.0, "func_ammo", id)
public client_disconnect(id)
{
	ammo[0][id] = 0
	ammo[1][id] = 0
	ammo[2][id] = 0
}

public func_ammo(id)
{
	ammopacks = ze_get_escape_coins(id)
	
	ammo[0][id] = ammopacks
	ammo[1][id] = ammopacks
	ammo[2][id] = ammopacks
	
	set_task(1.0, "change_ammo", id, _, _, "b")
}

public change_ammo(id)
{
	if(get_user_team(id) == 0 || get_user_team(id) == 3)
		return PLUGIN_HANDLED
		
	ammo[1][id] = ze_get_escape_coins(id)
		
	if(ammo[1][id] != ammo[2][id])
	{
		if(ammo[1][id] > ammo[2][id])
		{
			ammopacks = ammo[1][id] - ammo[2][id]
			format(string, charsmax(string), "[+%d Coins]", ammopacks)
		}
		else
		{
			ammopacks = ammo[2][id] - ammo[1][id]
			format(string, charsmax(string), "[-%d Coins]", ammopacks)
		}
		
		ammo[2][id] = ammo[1][id]
		
		set_hudmessage(random_num(50, 175), random_num(50, 175), random_num(50, 175), 0.51, 0.51, 0, 6.0, 3.0, _, _,3)
		show_hudmessage(id, "%s", string)
	}
	return PLUGIN_CONTINUE
}
Rest requests are made already.
Want your own mod edition? PM me.
Accepting private projects.
Discord: Fury#7469
Image

johnnysins2000
Veteran Member
Veteran Member
Paraguay
Posts: 678
Joined: 7 years ago
Location: Paraguay
Contact:

#3

Post by johnnysins2000 » 7 years ago

Jack GamePlay wrote: 7 years ago 1st Request:

Code: Select all

#include <zombie_escape>

new ammo[3][33], string[21], ammopacks

public plugin_init()
{
	register_plugin("[ZE] Addons: EC Change", "2.0", "ZETA [M|E|N]")
	register_logevent("round_start", 2, "1=Round_Start")
}

public round_start()
{
	new players[32], num, i
	get_players(players, num, "ach")
	
	for(i = 1; i < num; i++)
	{
		ammo[0][players[i]] = ze_get_escape_coins(players[i])
	}
}

public client_putinserver(id)	set_task(3.0, "func_ammo", id)
public client_disconnect(id)
{
	ammo[0][id] = 0
	ammo[1][id] = 0
	ammo[2][id] = 0
}

public func_ammo(id)
{
	ammopacks = ze_get_escape_coins(id)
	
	ammo[0][id] = ammopacks
	ammo[1][id] = ammopacks
	ammo[2][id] = ammopacks
	
	set_task(1.0, "change_ammo", id, _, _, "b")
}

public change_ammo(id)
{
	if(get_user_team(id) == 0 || get_user_team(id) == 3)
		return PLUGIN_HANDLED
		
	ammo[1][id] = ze_get_escape_coins(id)
		
	if(ammo[1][id] != ammo[2][id])
	{
		if(ammo[1][id] > ammo[2][id])
		{
			ammopacks = ammo[1][id] - ammo[2][id]
			format(string, charsmax(string), "[+%d Coins]", ammopacks)
		}
		else
		{
			ammopacks = ammo[2][id] - ammo[1][id]
			format(string, charsmax(string), "[-%d Coins]", ammopacks)
		}
		
		ammo[2][id] = ammo[1][id]
		
		set_hudmessage(random_num(50, 175), random_num(50, 175), random_num(50, 175), 0.51, 0.51, 0, 6.0, 3.0, _, _,3)
		show_hudmessage(id, "%s", string)
	}
	return PLUGIN_CONTINUE
}
Rest requests are made already.
The Ghost addon is not made Jack

If U have Time Can u make it and post these both Gameplay Addons in their Perspective section
Nobody Is That Busy If They Make Time :roll:

User avatar
Raheem
Mod Developer
Mod Developer
Posts: 2214
Joined: 7 years ago
Contact:

#4

Post by Raheem » 7 years ago

Can you explain how ghost mode works? Also if the plugin jack posted works it will be good idea if you posted it in our gameplay plugins section.
He who fails to plan is planning to fail

johnnysins2000
Veteran Member
Veteran Member
Paraguay
Posts: 678
Joined: 7 years ago
Location: Paraguay
Contact:

#5

Post by johnnysins2000 » 7 years ago

Raheem wrote: 7 years ago Can you explain how ghost mode works? Also if the plugin jack posted works it will be good idea if you posted it in our gameplay plugins section.
Raheem bro actually Ghost Plugin is not a Mod bro it is simply an gameplay addon

What does it do?

U will see Ghosts flying the Map That's All

Understandable?
Nobody Is That Busy If They Make Time :roll:

johnnysins2000
Veteran Member
Veteran Member
Paraguay
Posts: 678
Joined: 7 years ago
Location: Paraguay
Contact:

#6

Post by johnnysins2000 » 7 years ago

And OK I will test both these addons tonight And Post it In GamePlay section !

+ I will today Post Some Good Extra Items For ZM
Nobody Is That Busy If They Make Time :roll:

User avatar
Raheem
Mod Developer
Mod Developer
Posts: 2214
Joined: 7 years ago
Contact:

#7

Post by Raheem » 7 years ago

Hmm, I get the point so you need to convert it from zp to our Mod?

About items, Very nice bro and if you can publish our site everywhere.
He who fails to plan is planning to fail

johnnysins2000
Veteran Member
Veteran Member
Paraguay
Posts: 678
Joined: 7 years ago
Location: Paraguay
Contact:

#8

Post by johnnysins2000 » 7 years ago

Raheem wrote: 7 years ago Hmm, I get the point so you need to convert it from zp to our Mod?

About items, Very nice bro and if you can publish our site everywhere.
U want me to share The Mod On other websites instead of waiting for the next release ?
Nobody Is That Busy If They Make Time :roll:

User avatar
Night Fury
Mod Developer
Mod Developer
Posts: 677
Joined: 7 years ago
Contact:

#9

Post by Night Fury » 7 years ago

Raheem wrote: 7 years ago Hmm, I get the point so you need to convert it from zp to our Mod?

About items, Very nice bro and if you can publish our site everywhere.
It's not for ZP only..Open sma & check include list, they can be used in any mode without any convertation.
Want your own mod edition? PM me.
Accepting private projects.
Discord: Fury#7469
Image

johnnysins2000
Veteran Member
Veteran Member
Paraguay
Posts: 678
Joined: 7 years ago
Location: Paraguay
Contact:

#10

Post by johnnysins2000 » 7 years ago

Jack GamePlay wrote: 7 years ago
Raheem wrote: 7 years ago Hmm, I get the point so you need to convert it from zp to our Mod?

About items, Very nice bro and if you can publish our site everywhere.
It's not for ZP only..Open sma & check include list, they can be used in any mode without any convertation.
Hmm...Yes Jack they can be used in any mod.. Sorry I did not check the sma.... AnywayI need to ask We don't need to optimize this code for ze? Or just used it as it is ?
Nobody Is That Busy If They Make Time :roll:

User avatar
Night Fury
Mod Developer
Mod Developer
Posts: 677
Joined: 7 years ago
Contact:

#11

Post by Night Fury » 7 years ago

Don't waste your time like somone will comment here i know him. :)
Want your own mod edition? PM me.
Accepting private projects.
Discord: Fury#7469
Image

johnnysins2000
Veteran Member
Veteran Member
Paraguay
Posts: 678
Joined: 7 years ago
Location: Paraguay
Contact:

#12

Post by johnnysins2000 » 7 years ago

Jack GamePlay wrote: 7 years ago Don't waste your time like somone will comment here i know him. :)
AHAHA ok :lol:
Nobody Is That Busy If They Make Time :roll:

johnnysins2000
Veteran Member
Veteran Member
Paraguay
Posts: 678
Joined: 7 years ago
Location: Paraguay
Contact:

#13

Post by johnnysins2000 » 7 years ago

ZE COINS change is working Fine
Attachments
hl 2017-05-29 13-58-08-16.png
Nobody Is That Busy If They Make Time :roll:

User avatar
Raheem
Mod Developer
Mod Developer
Posts: 2214
Joined: 7 years ago
Contact:

#14

Post by Raheem » 7 years ago

Jack GamePlay wrote: 7 years ago It's not for ZP only..Open sma & check include list, they can be used in any mode without any convertation.
Ok, Thanks for info noob.
johnnysins2000 wrote: 7 years ago ZE COINS change is working Fine
So post it in our gameplay section.
He who fails to plan is planning to fail

User avatar
Spir0x
Veteran Member
Veteran Member
Tunisia
Posts: 641
Joined: 7 years ago
Location: Tunisia
Contact:

#15

Post by Spir0x » 6 years ago

Yes this ghost plugin is awesome i know it !

Post Reply

Create an account or sign in to join the discussion

You need to be a member in order to post a reply

Create an account

Not a member? register to join our community
Members can start their own topics & subscribe to topics
It’s free and only takes a minute

Register

Sign in

Who is online

Users browsing this forum: No registered users and 2 guests