How to make an Map ban
The banned players from a list are disconected have a big lag or in a few words they can not play the map
How to make a mapban?
Moderator: Cheaters
-
- Member
- Posts: 89
- Joined: January 20th, 2009, 12:39 pm
-
- Forum Staff
- Posts: 1400
- Joined: March 17th, 2008, 12:07 am
Re: How to make a mapban?
Um, okay.
Events:
Time - Elapsed game time is 5.00 seconds
Conditions:
Actions:
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Name of Player 1 (Red)) Equal to Kryptonyte
Then - Actions
Game - Defeat Player 1 (Red) with the message: Defeat!
Else - Actions
Or, for multiple names...
Player Group - Pick every player in (All players) and do (Actions)
Loop - Actions
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Name of (Picked player)) Equal to Kryptonyte
(Name of (Picked player)) Equal to JJ2197
(Name of (Picked player)) Equal to TonTonFAT
Then - Actions
Game - Defeat (Picked player) with the message: GTFO noob!
Else - Actions
Events:
Time - Elapsed game time is 5.00 seconds
Conditions:
Actions:
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Name of Player 1 (Red)) Equal to Kryptonyte
Then - Actions
Game - Defeat Player 1 (Red) with the message: Defeat!
Else - Actions
Or, for multiple names...
Player Group - Pick every player in (All players) and do (Actions)
Loop - Actions
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Name of (Picked player)) Equal to Kryptonyte
(Name of (Picked player)) Equal to JJ2197
(Name of (Picked player)) Equal to TonTonFAT
Then - Actions
Game - Defeat (Picked player) with the message: GTFO noob!
Else - Actions

Made by the late ILikeHacking
My quote from SKillER
Spoiler:
-
- The Flying Cow!
- Posts: 2196
- Joined: November 2nd, 2007, 10:34 pm
- Location: Melbourne
Re: How to make a mapban?
You forgot to include "Or" in your second trigger...
Visit Ozzapoo.net, my blog and the home of AutoCP and Cheatpack Detector!
AutoCP3 now available for free!
AutoCP3 now available for free!
-
- Banned-To-Be
- Posts: 1378
- Joined: July 28th, 2008, 6:28 pm
- Title: Administrator
Re: How to make a mapban?
well heres one that doesnt make u play the map
Player Group - Pick every player in (All players) and do (Actions)
Loop - Actions
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Name of (Picked player)) Equal to Kryptonyte
(Name of (Picked player)) Equal to JJ2197
(Name of (Picked player)) Equal to TonTonFAT
Then - Actions
Unit Group - Pick every unit in owned by picked player
Loop - Actions
Unit - Removed picked units from the game
Else - Actions
lol i didnt use world editor to write this so... yea
or
you can disable all triggers that have them in it.
Player Group - Pick every player in (All players) and do (Actions)
Loop - Actions
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Name of (Picked player)) Equal to Kryptonyte
(Name of (Picked player)) Equal to JJ2197
(Name of (Picked player)) Equal to TonTonFAT
Then - Actions
Unit Group - Pick every unit in owned by picked player
Loop - Actions
Unit - Removed picked units from the game
Else - Actions
lol i didnt use world editor to write this so... yea
or
you can disable all triggers that have them in it.

League of legends North America - Nietono
-
- Forum Staff
- Posts: 811
- Joined: January 1st, 2008, 12:58 am
Re: How to make a mapban?
If he actually uses those 'triggers', He's gonna have a hell of a laggy map.
I counted 5 leaks, +2 for each name.
I could make a jass/vjass one (whichever you prefer), If I get around to it.
I counted 5 leaks, +2 for each name.
I could make a jass/vjass one (whichever you prefer), If I get around to it.
-
- Member
- Posts: 89
- Joined: January 20th, 2009, 12:39 pm
Re: How to make a mapban?
Ok i like that in jass because i am going to insert it in a protected map not mine
And i like the idea of the defeating mesege
And i like the idea of the defeating mesege
LoL What was i Smoking when i talked to You?
-
- Senior Member
- Posts: 178
- Joined: February 15th, 2009, 9:08 pm
Re: How to make a mapban?
If you wanted to be mean, you could just crash them by putting an illegal statement in local code
-
- Member
- Posts: 89
- Joined: January 20th, 2009, 12:39 pm
Re: How to make a mapban?
I dont know jass i am a noob i just want some one to make it for me and tell me where to put it
It doesn't mather to me what it does to him just as he is not able to play the map(as soon as it starts he gets a defeating mesege and he is disconected)
It doesn't mather to me what it does to him just as he is not able to play the map(as soon as it starts he gets a defeating mesege and he is disconected)
LoL What was i Smoking when i talked to You?
-
- Forum Staff
- Posts: 1400
- Joined: March 17th, 2008, 12:07 am
Re: How to make a mapban?
Oh noes. 5 leaks. >.> If he's making the map in WE, there's going to be a lot of leaking anyways.Risen wrote:If he actually uses those 'triggers', He's gonna have a hell of a laggy map.
I counted 5 leaks, +2 for each name.
I could make a jass/vjass one (whichever you prefer), If I get around to it.
Jesus...
Okay, here, so Risen won't bitch.
Set the names to a variables (string, array)
Have (variable[1]=(first name), etc.
At 1.00 seconds or w/e, have the game return the names of each player that is PLAYING. (so it won't go over players who aren't there)
have it set the players with those names into a special player group, and then crash them, or defeat them.
function Check_Names takes nothing returns boolean
return(StringCase(GetPlayerName(Player(0)),true)==Name_Variable[1])
endfunction
something like that, I don't know. (not looking at JASSCraft right now)
Use WE to make the part where you add all the players into the group, then infinite loop or something to crash them.

Made by the late ILikeHacking
My quote from SKillER
Spoiler:
-
- Member
- Posts: 89
- Joined: January 20th, 2009, 12:39 pm
Re: How to make a mapban?

LoL What was i Smoking when i talked to You?