最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

自定義血量插件(特定/全體對象)使用方法及源代碼

2021-10-30 12:07 作者:Hildskjalf  | 我要投稿

插件原作者:joac1144 / Zyanthius [DK

https://forums.alliedmods.net/showthread.php?t=233971

食用方法:和其他插件一樣,在安裝了基礎(chǔ)mod模塊后把插件文件(后綴.SMx)移到某文件夾即可

游戲內(nèi)使用示例(控制臺輸入):

SM_hp player1 200 //將玩家player1的血量設(shè)置為200

SM_hp @all 500 //將全體玩家的血量設(shè)置為500

SM_spawnhp player1 200 //玩家player1出生時(shí)的血量設(shè)置為200

SM_spawnhp @all 500 //全體玩家出生時(shí)的血量設(shè)置為500

編譯前的插件.sp內(nèi)容:

(這個(gè)網(wǎng)站可以在線編譯.sp文件為.SMx):

https://www.sourcemod.net/compiler.php

#include <sourcemod>

#include <sdkhooks>

#include <sdktools>

#include <cstrike>


#pragma newdecls required


char spawnTarget[32];

char hp[32];

int spawnHealth[MAXPLAYERS+1];

bool spawnHealthOn[MAXPLAYERS+1];


public Plugin myinfo =

{

name = "Set Health",

author = "joac1144 / Zyanthius [DK]",

description = "Set players' health",

version = "2.0",

url = "https://forums.alliedmods.net/showthread.php?t=233971"

};


public void OnPluginStart()

{

LoadTranslations("common.phrases");

RegAdminCmd("SM_hp", Command_HP, ADMFLAG_SLAY, "Set players health");

RegAdminCmd("SM_spawnhp", Command_SpawnHP, ADMFLAG_SLAY, "Set health on spawn");

HookEvent("player_spawn", PlayerSpawn);

}


public Action Command_HP(int client, int args)

{

int health;


if (args < 2)

{

ReplyToCommand(client, "[SM] Usage: SM_hp <name or #userid> <hp>");

return Plugin_Handled;

}

char Target[64];

char cHP[32];

GetCmdArg(1, Target, sizeof(Target))

if (args >= 2 && GetCmdArg(2, cHP, sizeof(cHP)))

{

health = StringToInt(cHP);

}


char target_name[MAX_TARGET_LENGTH];

int target_list[MAXPLAYERS];

int target_count;

bool tn_is_ml;


if ((target_count = ProcessTargetString(

Target,

client,

target_list,

MAXPLAYERS,

COMMAND_FILTER_ALIVE,

target_name,

sizeof(target_name),

tn_is_ml)) <= 0)

{

ReplyToTargetError(client, target_count);

return Plugin_Handled;

}


for (int i = 0; i < target_count; i++)

{

if (health <= 0)

{

PrintToChat(client, "[SM] Please choose a higher value!");

return Plugin_Handled;

}

else

{

SetEntityHealth(target_list[i], health);

LogAction(client, target_list[i], "Admin %L set %L's health to %d.", client, target_list[i], health);

}

}


if (tn_is_ml)

{

ShowActivity2(client, "[SM] ", "Set %t health to %d.", target_name, health);

}

else

{

ShowActivity2(client, "[SM] ", "Set %s's health to %d.", target_name, health);

}


return Plugin_Handled;

}


public Action Command_SpawnHP(int client, int args)

{

/*

char spawnTarget[MAX_NAME_LENGTH];

int spawnHealth[MAXPLAYERS+1];

char hp[32];

bool spawnHealthOn[MAXPLAYERS+1];

*/

GetCmdArg(1, spawnTarget, sizeof(spawnTarget));

if (args < 2)

{

ReplyToCommand(client, "[SM] Usage: SM_spawnhp <name or #userid> <HP>");

return Plugin_Handled;

}

char target_name[MAX_TARGET_LENGTH];

int target_list[MAXPLAYERS];

int target_count;

bool tn_is_ml;

if ((target_count = ProcessTargetString(

spawnTarget,

client,

target_list,

MAXPLAYERS,

COMMAND_FILTER_ALIVE,

target_name,

sizeof(target_name),

tn_is_ml)) <= 0)

{

ReplyToTargetError(client, target_count);

return Plugin_Handled;

}

for (int i = 0; i < target_count; i++)

{

if (args >= 2 && GetCmdArg(2, hp, sizeof(hp)))

{

spawnHealth[target_list[i]] = StringToInt(hp);

}

if (spawnHealth[target_list[i]] <= 0)

{

ReplyToCommand(client, "[SM] Please choose a higher value!");

return Plugin_Handled;

}

else

{

spawnHealthOn[target_list[i]] = true;

LogAction(client, target_list[i], "Admin %L set %L to spawn with %d HP", client, target_list[i], spawnHealth[target_list[i]]);

}

}

if (tn_is_ml)

{

ShowActivity2(client, "[SM] ", "Set spawnhealth on %t", target_name);

}

else

{

ShowActivity2(client, "[SM] ", "Set spawnhealth on %s", target_name);

}


return Plugin_Handled;

}


public void PlayerSpawn(Event event, const char[] name, bool dontBroadcast)

{

int client = GetClientOfUserId(event.GetInt("userid"));

if (spawnHealthOn[client])

{

SetEntityHealth(client, spawnHealth[client]);

}

}








自定義血量插件(特定/全體對象)使用方法及源代碼的評論 (共 條)

分享到微博請遵守國家法律
南京市| 锡林郭勒盟| 太原市| 吉木乃县| 和田县| 崇仁县| 富源县| 依兰县| 清新县| 榆中县| 定安县| 额敏县| 青州市| 东港市| 册亨县| 双鸭山市| 昭苏县| 营口市| 德清县| 宁陕县| 桦川县| 余庆县| 盐山县| 胶南市| 正宁县| 普兰店市| 睢宁县| 新巴尔虎右旗| 灌南县| 深州市| 六盘水市| 中牟县| 台南县| 邹城市| 确山县| 洛浦县| 邮箱| 高安市| 望奎县| 吉木乃县| 广宗县|