Posted: Tue May 13, 2008 2:46 am Post subject: More a question
Would it be possible to script a walkon script to......make a character to where they view everything in the world as if they were dead. And could not be seen by living characters nor could see living characters. Yet they could fight with all thier weapons with creatures specifically made for this dead realm. Also those dead creatures could not see living or attack them and could not be seen by living?
Author
Message
*Edwards
Joined: 29 Dec 2007 Posts: 61 Location: Montreal, Canada
Posted: Wed May 14, 2008 5:49 pm Post subject:
I would say yes.
Change your graphic to 402 (male) or 403 (female).
But you might not be able to make it work correctly while mounted.
And you should receive a "you cannot use this item while dead" simply because the core recognize you like mobile.dead == 1
You could modify the whole thing into the scripts themselves by adding the following stuff to your checks if someone is dead.
Code:
if( mobile.dead )
foreach item in ListEquippedItem( mobile )
if( item.objtype == (objtype of deathshroud )
SendSysMessage( mobile, "You cannot use that while dead!";
return 0;
endif
endforeach
endif
*Objtype of a deathshroud has not been found or created yet for me. I cannot tell you the exact number for it.
But now, I'm wondering if there is core function that has to be modified :\
lol.. tek?