SphereCommunity
Disable client dialog (Pet command) - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: Script Help (/Forum-Script-Help)
+--- Thread: Disable client dialog (Pet command) (/Thread-Disable-client-dialog-Pet-command)



Disable client dialog (Pet command) - Russian - 11-18-2014 03:24 AM

Hello!
I have a problem - ghost players can send command to thier pets. With click on pet, player see a dialog with commands and set it to another player.
How to disable this menu? Screenshot attached.

[Image: 35hk3ds.png]

Thank you!


RE: Disable client dialog (Pet command) - azmanomer - 11-18-2014 09:01 AM

maybe on general events for player

on @CharClientTooltip
if (<flags>&statf_dead) && !(<act.isplayer>)
return 1
endif


RE: Disable client dialog (Pet command) - Russian - 11-18-2014 04:02 PM

General event of every charter:
Code:
[EVENTS E_STARTX]
ON=@CharClientTooltip
IF (<flags> & statf_dead) && !(<act.isplayer>)
RETURN 1
ENDIF
Does not work.

[Image: wv39cl.png]


RE: Disable client dialog (Pet command) - Coruja - 11-18-2014 06:42 PM

dead players can't use pet commands, so if this tooltip menu is showing even to dead players it can be considered an bug

I'll take a look, probably will be fixed on next nightly build


RE: Disable client dialog (Pet command) - Russian - 11-18-2014 09:02 PM

I am use Sphere server 2012 year and can not use last bulid because it is have errors and spells does not work with old flags.


RE: Disable client dialog (Pet command) - Extreme - 11-18-2014 11:14 PM

You use very old version and what a fix for fixed thing?

Anyway... try @ContextMenuSelect or @ContextMenuRequest.


RE: Disable client dialog (Pet command) - Russian - 11-20-2014 12:51 AM

18-11-2014, Coruja
Fixed: Pet tooltip menu showing to dead players.
Fixed: Pet tooltip menu showing 'Drop' button when the pet has no backpack access.
Smile