国产精品天干天干,亚洲毛片在线,日韩gay小鲜肉啪啪18禁,女同Gay自慰喷水

歡迎光臨散文網(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]);

}

}








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

分享到微博請遵守國家法律
钟祥市| 长岛县| 玉环县| 溆浦县| 繁昌县| 株洲县| 扶绥县| 仁化县| 理塘县| 米易县| 怀远县| 兴山县| 嘉义市| 宜阳县| 金山区| 石门县| 曲沃县| 定结县| 杨浦区| 长寿区| 浑源县| 汝城县| 绵阳市| 嵩明县| 尚义县| 沂水县| 大荔县| 永和县| 抚宁县| 平度市| 冕宁县| 琼中| 吉隆县| 临海市| 五常市| 疏勒县| 昌平区| 玉山县| 高雄市| 海盐县| 留坝县|