SphereCommunity
Some Questions of My Server - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: Some Questions of My Server (/Thread-Some-Questions-of-My-Server)



Some Questions of My Server - DeatH CoiL - 08-30-2016 07:39 AM

Staff, Good Night

I have some problems as my server, I will list below if someone can help:

1) How can the value of the damage appears to attack or suffer any damage?

2) When performing any action with targetself, the target enemy is lost. This only happens on my server, with all the players. It is not macro nor the client.

3) Is there any id deathshroud that does not hide the body items?

4) Does anyone have any script that the damage is greater to hit the paralyzed player? Or can help me on how to do?

Thank you!


RE: Some Questions of My Server - rastrero - 09-01-2016 02:23 AM

1)Just go to sphere.ini open it with notepad and there are many options to custom your server. One of thoose is the one you are looking for.

2)targetself macro?? its a client feature.

3) http://tracker.sphere.torfo.org/bugs/view.php?id=2511

4)A script that does more damage when your target is paralyzed?


RE: Some Questions of My Server - DeatH CoiL - 09-01-2016 03:29 AM

1) You know that I need to configure option?
2) The problem is that in any action in which targetself realize logged into my server, the target enemy is lost. This only happens on my server, use the same macros and client on another server and does not occur this problem.
3) Okay, I'll check.
4) Exactly, only for damage caused by weapons.


RE: Some Questions of My Server - rastrero - 09-01-2016 06:48 AM

1) if I understood right u want to see the damage everytime u hit an enemy, right? If its, u need to configure sphere.ini

2)If you are using commans like .targerself or .targetlast or other commands, you may dont have that scripts. If you are using Client macros, maybe u should delete your characters folder and do macros again. Do BACKUP!

3) ;D

4) I´ll guide you to do it by yourself. It´s quite easy.

-You should create a global event for all players.
Eg: "[event e_global_event]"
-Go sphere.ini and writte the name of the event "e_global_event". Search "event" until you see where.

[event e_global_event]
//here you can use triggers, the one u need is: @gethit
On=@gethit
//Now you here comes your script.
// Usefull Link http://wiki.sphere.torfo.org/index.php/@GetHit
if (<flags>&statf_freeze)

endif


////////

[event e_global_event]
On=@gethit
if (<flags>&statf_freeze)

endif