Okay so i want to know ho to disable Steed Speed, a skill, Jump and Unequip item or equip item on a map ?
so any help with a simple code ?
so any help with a simple code ?
Quote:
I see you still haven't taken our advice to learn basic C# programming outside of conquer servers...
What you are talking about is simply checking conditions and either running or bypassing a section of code...
So for example...
When trying to use the skill you want to disable you'd check
if(my map == map I don't want to use it on)
return;
or something along those lines.
Same with all your other checks.
if (client.Map.ID == Here is the map id)
client.Entity.Teleport(client.Map.ID, client.Entity.X, client.Entity.Y);