SphereCommunity
Invisible chars walk sphere.ini setting 1/0 help me. - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: Invisible chars walk sphere.ini setting 1/0 help me. (/Thread-Invisible-chars-walk-sphere-ini-setting-1-0-help-me)



Invisible chars walk sphere.ini setting 1/0 help me. - G-Defender - 10-21-2017 03:17 AM

Hello.

Code:
29-04-2016, Coruja
Fixed: Invisible (statf_invisible) chars not being revealed when others chars walk over him.

As the player passes over the invisible player invisibility is disappearing.

Can you set sphere.ini for this?

1 = open.
0 = close.

I'm waiting for help.
Thank you.


RE: Invisible chars walk sphere.ini setting 1/0 help me. - Coruja - 10-25-2017 02:24 AM

unfortunately sphere.ini already have too many settings, so sphere compiler already reached its limit and is not accepting more settings on this same file

but maybe you can bypass these walk checks using @PersonalSpace trigger
Code:
ON=@PersonalSpace
IF (<FLAGS> & statf_invisible)   //or <SRC.FLAGS>?
  ARGN1=0
ENDIF

this will lower the stamina required to walk over another char from 10 (default value) to 0, and when the value is 0 sphere will allow the walk skipping reveal checks


RE: Invisible chars walk sphere.ini setting 1/0 help me. - G-Defender - 10-25-2017 05:58 AM

@Coruja

not working.


RE: Invisible chars walk sphere.ini setting 1/0 help me. - massis87 - 10-25-2017 10:32 PM

http://wiki.spherecommunity.net/index.php?title=@StepStealth


RE: Invisible chars walk sphere.ini setting 1/0 help me. - G-Defender - 01-08-2018 02:25 AM

Hello look video.

https://youtu.be/KwDIz2D5Br4

invisible distortion when over the player while the player is invisible sphere:56d.

it works like this.

Code:
ON=@PersonalSpace
IF (<FLAGS> & statf_invisible)   //or <SRC.FLAGS>?
ARGN1=-1
ENDIF

@maya Corrected by.

thx.


RE: Invisible chars walk sphere.ini setting 1/0 help me. - evening - 01-08-2018 11:44 AM

you can use ( <i.flags> & 0800000 )