SphereCommunity
Removing an npc?? - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: Script Help (/Forum-Script-Help)
+--- Thread: Removing an npc?? (/Thread-Removing-an-npc)



Removing an npc?? - Catalan_mistral - 02-05-2017 10:35 AM

Ok was playing around trying to get defname/id from the morex of a corpse, so I figured create npc grab the info then remove it before it's placed in the world

Code:
[Function Get_ID]
serv.newnpc=<ARGN>
remove
Return <new.ID>

So a nice simple function, but how do I remove the NPC cleanly?


RE: Removing an npc?? - xwerswoodx - 02-05-2017 12:04 PM

Code:
[FUNCTION GET_ID]
RETURN <SERV.CHARDEF.<ARGN>.BASEID>



RE: Removing an npc?? - Catalan_mistral - 02-05-2017 08:35 PM

Thanks xwerswoodx, knew there would be an easier way Smile


RE: Removing an npc?? - Coruja - 02-10-2017 01:57 PM

you can get the chardef using the numeric ID
Code:
[FUNCTION GetCharID]
return <SERV.CHARDEF.<ARGN>.DISPID>
result: <GetCharID 058>=c_goat

or the numeric ID using chardef
Code:
[FUNCTION GetCharID]
return <hval <DEF0.<ARGS>> &~ 08c000000>
result: <GetCharID c_goat>=058