Jump to content
xEvo7

How to disable stealth in a certain map

Recommended Posts

Hi guys, 

Does anyone know How to disable stealth in a certain map?

Like if i want to make starena23 not stealthable? 

what am i suppose to do? 

 


Hit Like If You Like It!

Tekken-7.jpg

Share this post


Link to post
Share on other sites

skilleffect: stealth

 

something like this should do the trick.

 


if map == xxx then

return 0

end

 

Edited by Shako
  • Like 1

logo-big.png   logo.png

                                   Sunny Go! Online                                                                    pko.host                                                 

Share this post


Link to post
Share on other sites
1 hour ago, Shako said:

skilleffect: stealth

 

something like this should do the trick.

 



if map == xxx then

return 0

end

 

doesn't work


Hit Like If You Like It!

Tekken-7.jpg

Share this post


Link to post
Share on other sites

A simple solution to disable a skill in a map you want is by adding the following piece of code into your script.

	if GetChaMapName(role) == "<MAP_NAME>" then
		SkillUnable(role)
		return 
	end

 

  • Like 2

Share this post


Link to post
Share on other sites

yeah, this one!

 

8 hours ago, Angelix said:

A simple solution to disable a skill in a map you want is by adding the following piece of code into your script.


	if GetChaMapName(role) == "<MAP_NAME>" then
		SkillUnable(role)
		return 
	end

 

 


logo-big.png   logo.png

                                   Sunny Go! Online                                                                    pko.host                                                 

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...