![]() |
races bodies - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: Script Help (/Forum-Script-Help) +--- Thread: races bodies (/Thread-races-bodies) |
RE: races bodies - Osirirs - 09-08-2015 03:27 AM Oooh its exactly what I was wondering, its pretty much the only explanation, thanks pointhz ![]() RE: races bodies - XuN - 09-08-2015 05:53 PM (09-08-2015 01:38 AM)pointhz Wrote: @statchange only fires when a stat is changed through skill gain. That's why it wasnt working. That's not true, @StatChange is firing in every change on stats: from SkillGain, typing .str ingame, via script or when using modstr, ostr... it works in every stat change. If you want to disable stat gains change every stat-related variable from each skill in sphere_skills.scp to 0 so checks won't be made... or you can create a tag in @SkillGain and check that tag in the @StatChange to return 1 and remove it (you'll have to think a way to clear it if there was no gain intended to prevent some problems under other circumstances). Using return 1 in @StatChange trigger will prevent you from changing stats IN ANY WAY, no gain from skills, no changes from GMs, no raises from items, etc So if that trigger is not working for you... what build are you using? The most probable reason is that you are using a build older than the one with these changes. RE: races bodies - Osirirs - 09-09-2015 03:12 AM Well I am using 56b pre release, and updated spheresvr.exe with the most recent one in the downloads. Unless I have to get it somewhere else ? Where is the most recent and stable build ? RE: races bodies - pointhz - 09-09-2015 03:15 AM Alright Xun, thanks. I wrote what I understood from the wiki ![]() |