安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题




Neverwinter vault script category seems to be the defacto place to post scripting resources. There are a bunch of useful drop-in scripting systems the be found there. I talked with a few people about hosting a github/gitlab repository or a wiki, but it's really hard to bring everything together into a central resource. Neverwinter vault or any building/scripting related channel on neverwintervault/nwn:ee discord are probably your best option at the moment.
https://neverwintervault.org/project/nwnee/module/dmfi-multiplayer-starter-mod-nwnee
Sounds a lot like the Anphillia death system, it was great.
and i think its a module event script,not an OnDeathScript.
this script however that you want is probebly best done by creating a whole new custom function,but im not a C programmer.
all i can create with the standart functions for you is this:
onDeathScript:
void {
SetlocalVarialble(OBJECT_SELF,"death",1);
}
moduleHBscript:
void main {
object x = GetLastRespawnButtonPresser();
GetLocalVariable(x,"death");
if ( death == 1 )
{
int hptoheal=1000;
effect y = EffectHeal(hptoheal);
ApplyEffectToObject(DURATION_TYPE_INSTANT,y,x);
SetlocalVarialble(OBJECT_SELF,"death",0);
}
}