![]() |
Anti-Gate, recall and mark? - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: General Help (/Forum-General-Help) +--- Thread: Anti-Gate, recall and mark? (/Thread-Anti-Gate-recall-and-mark) |
Anti-Gate, recall and mark? - daedelus - 10-15-2012 10:13 PM How i can to make a part of an area can't cast mark, recall or gate spells? i need to redefine a new region?,if is so, how i can applied this condition to the region? Thanks RE: Anti-Gate, recall and mark? - Rayvolution - 10-15-2012 10:58 PM Yes, you need to add a new region, and apply these flags to it: region_antimagic_recall_in 00002 region_antimagic_recall_out 00004 region_antimagic_gate 00008 For example, here's one I made in sphere_map0.scp that will announce when you enter the area, block recalling and gate, and won't allow you to place buildings: Code: [AREADEF a_newdungeon] RE: Anti-Gate, recall and mark? - daedelus - 10-15-2012 11:05 PM Thanks man!. RE: Anti-Gate, recall and mark? - Barnabus - 10-16-2012 06:26 AM Just to add to Rayvolutions expanation for you and others that might like to know. There is loads of region commands, here.. http://wiki.sphere.torfo.org/index.php/AREADEF You can turn them all off and off by changing the value (1/0) (region.guarded=0) is GZ off. You can also check if a flag is on or off in game by saying .show region.mark Below I have added an example script that checks the region for a guarded flag. To use it type .IsRegionGuarded in game... PHP Code: [FUNCTION IsRegionGuarded] The Defs for the Region Flags can be found in sphere_defs.scp. Example :: region_flag_ship 00040 // this is a ship region. ship commands region_flag_nobuilding 00080 // no building in this area |