SphereCommunity
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]
on=@enter
src.events +e_myevent

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]
ON=@Enter
src.events +e_myplayer_event

And to add the region event to the region inside your sphere_map0.scp:

Code:
[AREADEF a_townMoonglow]
EVENTS=r_default,r_default_rock,r_default_water,r_default_tree,r_default_grass  // <---- here are your REGIONAL events add r_region_event to this line.
NAME=Moonglow
GROUP=Moonglow
FLAGS=REGION_FLAG_NOBUILDING|REGION_FLAG_GLOBALNAME|REGION_FLAG_GUARDED
P=4442,1172,0,0
RECT=4379,1045,4439,1176,0
RECT=4383,1021,4430,1045,0
RECT=4439,1048,4497,1142,0
RECT=4379,1176,4399,1181,0
RECT=4439,1142,4489,1176,0
RECT=4459,1176,4485,1184,0
TAG.GUARDOWNER=the town



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]
EVENTS=r_default,r_beachforboys

Code:
[regiontype r_beachforboys]
on=@enter
src.events +e_nocombat
thanx!