SphereCommunity
guildstones broke? - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: guildstones broke? (/Thread-guildstones-broke)

Pages: 1 2 3 4 5


RE: guildstones broke? - Coruja - 12-23-2016 02:59 PM

you can use ToggleAbbreviation function to toggle guild abbrev on/off
Code:
[FUNCTION JOINWEI]
REF1=040004000
REF1.JoinAsMember <SRC>
REF1.ToggleAbbreviation <SRC>
SRC.NotoUpdate

but stone privs are working fine, 100=enemy and 101=ally
https://github.com/Sphereserver/Source/blob/18c6d827407a98e5de8abbe943b166e562ef5a73/src/graysvr/CObjBase.h#L2057

also try using .notoupdate manually on both chars, maybe your guild is already working but just not updating the char notoriety color on name (.notoupdate will force it to update)


RE: guildstones broke? - Ben - 01-09-2017 08:20 AM

After looking at this for a while, there are flaws in the guild system.
It seems to work fine when 2 guilds are of opposite alignment (order/chaos)
Things get messed up when guilds have no alignments. ISALLY seems to always return true...
It would take some time to revise the whole system as I think even the dialogs are flawed (no method to declare allies... or is not at war assumed to be allies?)

For now, there is a method I found that you can use to override things.
There are 2 functions in sphere_genericstone_functions.scp:
f_stonesys_internal_isatwarwith
f_stonesys_internal_isalliedwith
uncomment them both, to override internal functions. RETURN 2 in this case will make it check internal functions.
This line ---> If (<guildfromuid.<argo.uid>.isally> && <argo.guildfromuid.<uid>.isally>) seems to be causing the issue so you might want to eliminate it or customise the whole function.
You could basically hardcode which guilds are at war with these 2 functions.
Anyways, I'm sure you can figure it out from here


RE: guildstones broke? - x77x - 01-09-2017 09:35 AM

yipee! BACK ORANGE =P

250 days and someone believes me, thanks Ben


RE: guildstones broke? - Coruja - 01-11-2017 07:53 AM

that's what I already said some weeks ago... f_stonesys_internal_isatwarwith / f_stonesys_internal_isalliedwith
but it's nice to know that the problem is now solved Veryhappy

anyway, nice finding Ben. To prevent some problems like this, maybe it's better change guildstones to use guild alignment only on wars but not on alliances