SPIDERWEB from spiders - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: General Help (/Forum-General-Help) +--- Thread: SPIDERWEB from spiders (/Thread-SPIDERWEB-from-spiders) Pages: 1 2 |
SPIDERWEB from spiders - WRWR - 07-30-2012 05:30 AM Where in the scripts i can add or remove it from NPC? Just want to add this ability to my custom spider RE: SPIDERWEB from spiders - darksun84 - 07-30-2012 06:11 AM I think that it's an hardcoded thing RE: SPIDERWEB from spiders - WRWR - 07-30-2012 06:53 AM So, sad... I think it was SHELTER=t_web RE: SPIDERWEB from spiders - Gil Amarth - 07-30-2012 06:57 AM Yep, it´s hardcoded. But you can softcode a similar Timer for your custom spiders. Also, if I remember correctly, you can remove the spider web thing with @NPCSpecialAction, you can return 1 always a remove the web drop. Or insert your own web system and later return 1. http://wiki.sphere.torfo.org/index.php/@NPCSpecialAction RE: SPIDERWEB from spiders - darksun84 - 08-01-2012 11:14 AM I found this on spherewiki TAG.OVERRIDE.SPIDERWEB When set to 1, NPC will be able to drop spider webs (for a giant spider, if this set to 1 then it will stop it from dropping webs) You have to put that in the chardef monster block http://wiki.sphere.torfo.org/index.php/Override_TAGs RE: SPIDERWEB from spiders - WRWR - 08-01-2012 03:14 PM ahh good news commander ^) i love you darksun 0_o RE: SPIDERWEB from spiders - WRWR - 08-14-2012 07:21 AM How to resolve it? Code: ERROR:'spiderweb' Bad Link to 040000d40 RE: SPIDERWEB from spiders - Anarch Cassius - 08-14-2012 07:25 AM Sounds like the web was around after the spider who made it died. This shouldn't typically cause problems but you can always put a test for if the link is valid somewhere line environchange and if not just set it to blank. I'm not sure the link does anything except perhaps let that creature ignore the penalties of the web. RE: SPIDERWEB from spiders - RanXerox - 08-14-2012 07:28 AM (08-14-2012 07:21 AM)WRWR Wrote: How to resolve it? I think this happens when a creature (the spider) is linked to an item (the spiderweb), and then the creature dies before the item decay... The server is complaining that an item is linked to something that no longer exists. Possible Solutions: - Ignore this error - Do not spawn spiders - Make spider's invulnerable - Prevent spiders from dropping webs RE: SPIDERWEB from spiders - Gil Amarth - 08-14-2012 07:54 AM If this happens when the web decays and the spider who belongs the web are already dead, I think you could try to set the link in the @TIMER trigger, under the spiderweb definition. ON=@TIMER CONT.LINK= RETURN 0 You only want to remove the error in the console, don´t you?. Then you only have to set the link of the spiderweb to zero just before dissappears. |