DayZ
评价数不足
pvez test
   
奖励
收藏
已收藏
取消收藏
Type: Mod
文件大小
发表于
更新日期
745.114 KB
2023 年 10 月 14 日 下午 11:51
2024 年 1 月 2 日 上午 5:38
3 项改动说明 ( 查看 )

订阅以下载
pvez test

描述
NOTE: THIS TEMPORARY MOD

This is Test PVEZ reloaded but added some additional codes that enable Players do Damage/Kill AI outside of PvP Zones

for server owners to were using PVEZ reloaded previously, you don't need to do anything else but switch the mod. the rest of settings will stay and apply to server.


Credits goes to modders Liquidrock(aka lava), Ermiq, Gunner for making it possible.

Original mod: https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=2831742849

Also, check out this mod which can divide PVE-PVP zone comparable with Expansion AI!
https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=3346970712
热门讨论 查看全部(4)
3
2024 年 11 月 12 日 上午 2:40
PVP Zone radius
Torstein
1
2024 年 11 月 11 日 上午 6:47
Update Frostline?
Berlinmarkus
0
2024 年 4 月 14 日 下午 5:28
How to get law breaker status by script?
TwoFahh
32 条留言
Shoden 4 月 22 日 下午 4:36 
This mod has been broken since an update to Expansion on March 31, 2025. I put together a fix for my own server right after it broke, and decided to make it available to anyone else still using this mod: https://psteamcommunity.yuanyoumao.com/sharedfiles/filedetails/?id=3468821188
Samy FIGUEROA 2 月 17 日 上午 9:05 
OK thanks for the anwser !
yomao  [作者] 2 月 17 日 上午 6:13 
@Symoji(Samy) This mod isn't something I made from scratch, I just repacked it by put parts of code provided by someone else..To be honest, I don’t really know much about the Expansion Map Markers PVE-PVP. But I do know that it’s a well-made piece of work by someone who understands the code. That’s why it's got a longer lifespan, and there's definitely someone around to keep it maintained.
Samy FIGUEROA 2 月 17 日 上午 1:59 
What's the differences between ''Expansion Map Markers PVE-PVP'' and this mod ?
valle 2024 年 12 月 20 日 下午 1:38 
I have my complete pve map and the areas in red are pvp, how can I modify it so that it is complete pvp on the weekend?
yomao  [作者] 2024 年 12 月 19 日 下午 9:26 
@PapaOurs009 hey, yes this mod simply makes AI don't tied to PVE mode
PapaOurs009 2024 年 12 月 19 日 下午 5:52 
Does this allow AI to shoot players OUTSIDE of PVP zones?
yomao  [作者] 2024 年 10 月 24 日 下午 8:49 
@Аллан Беринг yes go ahead
Berlinmarkus 2024 年 10 月 24 日 下午 7:18 
can you make an update for Shakal....the pvp zones are not displayed in the game on the map
Аллан Беринг 2024 年 10 月 19 日 上午 4:42 
MAYBE YOU MAKE THAT "totem.c" >>@pvez test\4_world\entities\itembase\basebuildingbase


modded class TerritoryFlag {
protected autoptr PVEZ_Zone pvez_Zone;

void TerritoryFlag() {
if (GetGame().IsServer()) {
CreatePVEZZone();
}
}

void ~TerritoryFlag() {
if (g_Game && g_Game.pvez_Zones && pvez_Zone) {
g_Game.pvez_Zones.RemoveZone(pvez_Zone);
}
}
void CreatePVEZZone() {
if (g_Game && g_Game.pvez_Zones) {
vector position = GetPosition();
if (!pvez_Zone) {
pvez_Zone = g_Game.pvez_Zones.AddZone(
PVEZ_ZONE_TYPE_TERRITORYFLAG,
position[0],
position[2],
g_Game.pvez_Config.TERRITORYFLAG_ZONES.Radius,
g_Game.pvez_Config.TERRITORYFLAG_ZONES.Name ,
g_Game.pvez_Config.TERRITORYFLAG_ZONES.ShowBorderOnMap,
g_Game.pvez_Config.TERRITORYFLAG_ZONES.ShowNameOnMap);
}
}
}
}