![]() |
Regiontype - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: General Help (/Forum-General-Help) +--- Thread: Regiontype (/Thread-Regiontype) |
Regiontype - mrkarlo - 02-08-2013 07:03 AM hey people! im in moonglow now. its easy to define region (.where, .region show.name). But how to write correct region name in script? Code: [regiontype a_townmoonglow] doesnt work! RE: Regiontype - Mordaunt - 02-08-2013 07:09 AM Not entirely sure I am following you but I will try and explain region events.... Code: [REGIONTYPE r_region_event] And to add the region event to the region inside your sphere_map0.scp: Code: [AREADEF a_townMoonglow] RE: Regiontype - darksun84 - 02-08-2013 07:12 AM did you attached that regiontype to an areadef ? RE: Regiontype - mrkarlo - 02-08-2013 07:45 AM thanx, but AREA its not regiontype! For example r_ohoho how to define regiontype of Moonglow? RE: Regiontype - Mordaunt - 02-08-2013 07:50 AM r_ohohoh is the name of a regional event you have to add it to the region for it to work, which is why it goes under an areadef or roomdef in sphere_map you can temporarily add it ingame with .region.events +r_yaddayadda but to do it via script you need to do it as i showed. RE: Regiontype - mrkarlo - 02-08-2013 08:07 AM yes, thanks guys! Code: [AREADEF a_townMoonglow] Code: [regiontype r_beachforboys] |