Need help to solve some bugs - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: General Help (/Forum-General-Help) +--- Thread: Need help to solve some bugs (/Thread-Need-help-to-solve-some-bugs) |
Need help to solve some bugs - escribano - 12-29-2012 03:42 PM Hi folks, Today i need help to solve some bugs on my shard: 1) When a char is training bowcrafting he need to create shaft's to gain skill. but if i dont separte the logs (ex: 100 logs) before start to create shafts, sphere will create 100 shafts once. 2) If someone use some "area spell" closer to a house, the char inside is hited. 3) If someone use the spell "Mass Dispell" closer to a hose, sometime itens disappear. 4) Spells and Arrows are trespassing the wall stone 5) I can't block to players put boats inside dungeons 6) I need to create some indestructible itens, but there is no flag to the item dont get damaged. Thats all, if someone could help PLEASE i'll be glad! Thanks again! I've fixed the BUG #6, i added this to the itens: Code: ON=@Damage Thanks! RE: Need help to solve some bugs - Oxtar - 12-30-2012 01:37 AM Quote:1) When a char is training bowcrafting he need to create shaft's to gain skill. but if i dont separte the logs (ex: 100 logs) before start to create shafts, sphere will create 100 shafts once. That's the way it should be raised. You really are willing to separate every single logs?... Then script it lol.. Quote:2) If someone use some "area spell" closer to a house, the char inside is hited. You need to script the spell to take in consideration the house itself. Quote:3) If someone use the spell "Mass Dispell" closer to a hose, sometime itens disappear. Same as 2 Quote:4) Spells and Arrows are trespassing the wall stone You need to script your wall stone spell in order to prevent that. Quote:5) I can't block to players put boats inside dungeons Use the map_points in your map folder to add flags to regions. Look the spherewiki for more infos. Quote:6) I need to create some indestructible itens, but there is no flag to the item dont get damaged. Or you could simply set it negative on the item itself. Code: ON=@Create RE: Need help to solve some bugs - Mulambo - 01-03-2013 07:52 AM (12-29-2012 03:42 PM)escribano Wrote: 1) When a char is training bowcrafting he need to create shaft's to gain skill. but if i dont separte the logs (ex: 100 logs) before start to create shafts, sphere will create 100 shafts once. This way is good for maxed crafts, it would be pain to suply amunition or other items like wires to market, if u would have to make it one by one. U should leave that option for players to make macro in injection/razor/phoenix to script it for themselves if they need it. If u really want to force players to make it one by one, u can remove line REPLICATE=1 in ITEMDEF. This value tells sphere to make that items from all resources you have in stack |