Daz
Daz
Reactions
-
Re: I would like someone to make me a script for a conversation
This should work://Put this on action taken in the conversation editor #include "nw_i0_tool" void main() { object oPC = GetPCSpeaker(); object oItem = GetFirstItemInInventory(oPC); while (G… (View Post)1 -
Re: CEP and nwsync from other servers.
Remove the single quotes and it should work. -nwsyncurl http://anphillia.pw/nwsync/ -nwsynchash 8cb563e9d0ea4f1de184ddc56392550f14108439 (View Post)2 -
Re: Get Spell Name without 2da
Get2daString() should be fine to use these days, it caches the result in memory the first time it's called. (View Post)1 -
Re: ActionExamine OnUsed
OBJECT_SELF in an AssignCommand refers to the action subject, which is oPC in this case, the example is wrong. This is the right way to do it: // A simpler example - examine the thing being used by t… (View Post)2 -
Re: [Help] Script StartingConditional, if TRUE then..
int nHasItem = GetItemPossessedBy(oPC, "teteproprio"); should be int nHasItem = GetIsObjectValid(GetItemPossessedBy(oPC, "teteproprio")); (View Post)2