Jump to content

Рандомное ХП у Танка


Райан

Recommended Posts

  • Администратор

Плагин выставляет рандомное здоровье у Танка. По умолчанию от 6000 до 50000. В cfg/sourcemod создается cfg файл Random_HP_Tank.cfg в котором можно выставить минимальное и максимальное значение здоровья.

// This file was auto-generated by SourceMod (v1.10.0.6492)
// ConVars for plugin "random_hp_tank.smx"


// Максимальное количество ХП Танка
// -
// Default: "9999999"
// Minimum: "1.000000"
sm_random_hpt_maxtime "9999999"

// Минимальное количество ХП Танка
// -
// Default: "1000"
// Minimum: "0.000000"
sm_random_hpt_mintime "1000"

Подробнее о создании плагина:

 

random_hp_tank.smx random_hp_tank.sp

Ненавижу загружать новые файлы, но обожаю обновлять версии.

Link to comment
Share on other sites

  • 5 weeks later...
  • 2 years later...
  • Администратор

Попытался я адаптировать код под актуальную сборку, но ХП почему то не выставляется рандомное. Кто то может оправить?

#include <sourcemod>
#include <sdktools>
#include <sdktools_functions>

#define PLUGIN_VERSION "0.3"

Handle TankHealth = INVALID_HANDLE;


public Plugin myinfo =
{
	name = "Рандомное ХП у Танка",
	author = "Райан",
	description = "Плагин выставляет рандомное здоровье у Танка.",
	version = PLUGIN_VERSION,
	url = "https://ip-gamers.net/topic/450-randomnoe-hp-u-tanka/"
};

public void OnPluginStart()
{

	CreateConVar("sm_version", PLUGIN_VERSION, "the plugin's version", FCVAR_NOTIFY);
	
	TankHealth = FindConVar("z_tank_health");
}

public Action TankHealthTimerT(Handle htimer)
{
	int RandomHealth;
	RandomHealth = GetRandomInt(1, 10000);
	SetConVarInt(TankHealth, RandomHealth)
	return Plugin_Handled;
}

 

Ненавижу загружать новые файлы, но обожаю обновлять версии.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...