Редактиране на Kill Money.

В този раздел можете да подавате всякакви заявки за намиране, изработка или преработка на плъгини/модове.
Аватар
iv69
Извън линия
Потребител
Потребител
Мнения: 744
Регистриран на: 17 Мар 2018, 15:34
Се отблагодари: 214 пъти
Получена благодарност: 39 пъти

Редактиране на Kill Money.

Мнение от iv69 » 25 Май 2019, 21:15

Ползвам, но искам да помоля за редакция на този плъгин:
https://forums.alliedmods.net/showthrea ... 7?t=104887

Плъгина дава правилно "новата стойност" , но мисля, че няма вариант за даване на пари при убиване на съотборник?! Т.е. имам активиран плъгин csdm_ffa.amxx , но $$$ дава само при убиване на противников играч. Опитах да променя нещо с цварите така:
amx_teamkill_money "0"
или amx_teamkill_money "10"
или amx_teamkill_money "-10"

Но не стана нищо: При първия случай: Не даваше за килл никакви пари, при втория и третия просто маха 10$, а аз имам включен FFA, и искам ако може както приamx_kill_money , така и при amx_teamkill_money да дава $$$.

Код за потвърждение: Избери целия код

/*	Formatright © 2010, ConnorMcLeod

	Kill Money is free software;
	you can redistribute it and/or modify it under the terms of the
	GNU General Public License as published by the Free Software Foundation.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with Kill Money; if not, write to the
	Free Software Foundation, Inc., 59 Temple Place - Suite 330,
	Boston, MA 02111-1307, USA.
*/

#include <amxmodx>
#include <cstrike>
#include <fakemeta>

#define VERSION "0.1.0"

#define DeathMsg_KillerID 1
#define DeathMsg_VictimID 2

#define Money_Amount 1

new g_iMaxPlayers
#define IsPlayer(%1)	( 1 <= %1 <= g_iMaxPlayers )

#define XTRA_OFS_PLAYER 5
#define m_iAccount 115
#define cs_set_money_value(%1,%2)	set_pdata_int(%1, m_iAccount, %2, XTRA_OFS_PLAYER)

new g_pCvarKillMoney, g_pCvarTkMoney, g_pCvarMaxMoney

new g_iNewMoney
new g_iMsgHookMoney
new gmsgMoney

public plugin_init()
{
	register_plugin("Kill Money", VERSION, "ConnorMcLeod")

	g_pCvarKillMoney = register_cvar("amx_kill_money", "1337")
	g_pCvarTkMoney = register_cvar("amx_teamkill_money", "-1337")
	g_pCvarMaxMoney = register_cvar("amx_killmoney_maxmoney", "16000")

	register_event("DeathMsg", "Event_DeathMsg", "a")

	g_iMaxPlayers = get_maxplayers()
	gmsgMoney = get_user_msgid("Money")
	
}

public Event_DeathMsg()
{
	new iKiller = read_data(DeathMsg_KillerID)
	if( IsPlayer(iKiller) && is_user_connected(iKiller) )
	{
		new iVictim = read_data(DeathMsg_VictimID)
		if( iVictim != iKiller )
		{
			g_iNewMoney = clamp
						( 
							cs_get_user_money(iKiller) + get_pcvar_num( cs_get_user_team(iVictim) == cs_get_user_team(iKiller) ? g_pCvarTkMoney : g_pCvarKillMoney ), 
							0, 
							get_pcvar_num(g_pCvarMaxMoney)
						)
			g_iMsgHookMoney = register_message(gmsgMoney, "Message_Money")
		}
	}
}

public Message_Money(iMsgId, iMsgDest, id)
{
	unregister_message(gmsgMoney, g_iMsgHookMoney)
	cs_set_money_value(id, g_iNewMoney)
	set_msg_arg_int(Money_Amount, ARG_LONG, g_iNewMoney)
}
Добавено преди 2 часа 37 минути 47 секунди:
iv69 написа: 25 Май 2019, 18:37 Ползвам, но искам да помоля за редакция на този плъгин:
https://forums.alliedmods.net/showthrea ... 7?t=104887

Плъгина дава правилно "новата стойност" , но мисля, че няма вариант за даване на пари при убиване на съотборник?! Т.е. имам активиран плъгин csdm_ffa.amxx , но $$$ дава само при убиване на противников играч. Опитах да променя нещо с цварите така:
amx_teamkill_money "0"
или amx_teamkill_money "10"
или amx_teamkill_money "-10"

Но не стана нищо: При първия случай: Не даваше за килл никакви пари, при втория и третия просто маха 10$, а аз имам включен FFA, и искам ако може както приamx_kill_money , така и при amx_teamkill_money да дава $$$.

Код за потвърждение: Избери целия код

/*	Formatright © 2010, ConnorMcLeod

	Kill Money is free software;
	you can redistribute it and/or modify it under the terms of the
	GNU General Public License as published by the Free Software Foundation.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with Kill Money; if not, write to the
	Free Software Foundation, Inc., 59 Temple Place - Suite 330,
	Boston, MA 02111-1307, USA.
*/

#include <amxmodx>
#include <cstrike>
#include <fakemeta>

#define VERSION "0.1.0"

#define DeathMsg_KillerID 1
#define DeathMsg_VictimID 2

#define Money_Amount 1

new g_iMaxPlayers
#define IsPlayer(%1)	( 1 <= %1 <= g_iMaxPlayers )

#define XTRA_OFS_PLAYER 5
#define m_iAccount 115
#define cs_set_money_value(%1,%2)	set_pdata_int(%1, m_iAccount, %2, XTRA_OFS_PLAYER)

new g_pCvarKillMoney, g_pCvarTkMoney, g_pCvarMaxMoney

new g_iNewMoney
new g_iMsgHookMoney
new gmsgMoney

public plugin_init()
{
	register_plugin("Kill Money", VERSION, "ConnorMcLeod")

	g_pCvarKillMoney = register_cvar("amx_kill_money", "1337")
	g_pCvarTkMoney = register_cvar("amx_teamkill_money", "-1337")
	g_pCvarMaxMoney = register_cvar("amx_killmoney_maxmoney", "16000")

	register_event("DeathMsg", "Event_DeathMsg", "a")

	g_iMaxPlayers = get_maxplayers()
	gmsgMoney = get_user_msgid("Money")
	
}

public Event_DeathMsg()
{
	new iKiller = read_data(DeathMsg_KillerID)
	if( IsPlayer(iKiller) && is_user_connected(iKiller) )
	{
		new iVictim = read_data(DeathMsg_VictimID)
		if( iVictim != iKiller )
		{
			g_iNewMoney = clamp
						( 
							cs_get_user_money(iKiller) + get_pcvar_num( cs_get_user_team(iVictim) == cs_get_user_team(iKiller) ? g_pCvarTkMoney : g_pCvarKillMoney ), 
							0, 
							get_pcvar_num(g_pCvarMaxMoney)
						)
			g_iMsgHookMoney = register_message(gmsgMoney, "Message_Money")
		}
	}
}

public Message_Money(iMsgId, iMsgDest, id)
{
	unregister_message(gmsgMoney, g_iMsgHookMoney)
	cs_set_money_value(id, g_iNewMoney)
	set_msg_arg_int(Money_Amount, ARG_LONG, g_iNewMoney)
}
Заключете темата, намерих плъгин който работи дори и с включен FFA:
https://forums.alliedmods.net/showthread.php?t=27468

Заключено
  • Подобни теми
    Отговори
    Преглеждания
     Последно мнение

Обратно към “Заявки за плъгини”

Кой е на линия

Потребители разглеждащи този форум: 0 регистрирани и 11 госта