Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Skill swipe skill block

Newbie Spellweaver
Joined
Dec 26, 2014
Messages
64
Reaction score
2
Hi guys , is there any way to block CERTAIN skills to not be steal-able by Phantoms ?(v117)
 
Newbie Spellweaver
Joined
Dec 26, 2014
Messages
64
Reaction score
2
Talking bout this ?

Code:
          case SKILL_SWIPE:                PlayersHandler.StealSkill(slea, c);                break;
 
Upvote 0
Custom Title Activated
Loyal Member
Joined
Jan 18, 2010
Messages
3,109
Reaction score
1,140
Talking bout this ?

Code:
          case SKILL_SWIPE:                PlayersHandler.StealSkill(slea, c);                break;

Yes. I can't find that in my Development source so I'm not quite sure which it is. I'll assume it's SkillSwipeRequest, and if it is, it refers to GameConstants.canBeStolen(skillid). In GameConstants, find boolean "canBeStolen", and for whatever skills you want to block, make them return false.
 
Upvote 0
Back
Top