Deprotedtion problems

General talk about editing, cheating, and deprotecting maps.

Moderator: Cheaters

tiiger111
Newcomer
Posts: 5
Joined: March 12th, 2009, 3:03 pm

Deprotedtion problems

Post by tiiger111 »

I have a crappy deprotection problem with map named Winter Maul Wars (.w3m). I want to deprotect it cause it has the "-name xxx" command.
I want that command to my map too but i can't even find a tut for that...
please try to deprtect it or teach me how to make that "-name" command.
If i remember right then Splitter TD has the same command and Broken Alliances maybe...
Winter Maul Wars X13.w3m
You do not have the required permissions to view the files attached to this post.
User avatar
haxorico
Super Moderator
Posts: 3197
Joined: February 24th, 2009, 1:31 pm
Location: JEW LAND
Been thanked: 1 time

Re: Deprotedtion problems

Post by haxorico »

if u dunno how to make a -name command in GUI so deprotection wont help. it will get all the triggers into 1 trigger called "init" and it will be in JASS
Spoiler:
actully u can just extract the war3map.j and look for it over there. same...
if u want us to help u deprotect the map say whats the problem

if u want us to deprotect it for u. go to the request section

if u want to learn how to make a -name command. in jass or GUI. go to the triggering section
Image
Spoiler:
(02:24:09)

Code: Select all

ChatBot: FatherSpace logs into the Chat.
(02:24:28) Lanaya: Gtfo ken.
(02:24:33) ChatBot: FatherSpace logs out of the Chat.
(02:24:40) Lanaya: Thought so. bitch.
(02:24:44) ChatBot: FatherSpace logs into the Chat.
(02:24:48) FatherSpace: Can I come back yet?
(02:24:51) Lanaya: What'd i say earlier.
(02:24:51) Lanaya: No.
(02:24:58) FatherSpace: Let's try this...
(02:25:01) ChatBot: Lanaya has been logged out (Kicked).

Code: Select all


(14:33:51) 2Pac: Do you know what'S so funny?
(14:34:01) Lanaya: No, please show me.
(14:34:07) 2Pac: This.
(14:34:09) ChatBot: Lanaya has been logged out (Kicked).
(14:34:10) 2Pac: 

Code: Select all

(14:35:59) haxorico: No one will belive me if I say "I got this song from 2pac on MSN" lolz ^^
(14:36:02) Lanaya: lolz.
(14:36:16) 2Pac: I AIN'T DEAD FFS.
(14:36:26) 2Pac: I'm a living legend, y'now.
(14:37:17) haxorico: why is 2Pac a legend?
(14:37:28) Lanaya: He's the worse rapper evar.

Code: Select all

(15:42:51) Lanaya: can i suck , . . .

Code: Select all

(13:55:21) ChatBot: 2Pac rolls 1d100 and gets 1.
(13:55:21) ChatBot: haxorico rolls 1d2 and gets 2.
(13:55:27) haxorico: owned?

Code: Select all

GeorgeMots: xplain what happens in SP. Why cant you save?
dast.-:i need play with 2 players

Code: Select all

(21:53:08) (673237): plzplzplz, im sorry about before.
(21:53:26) FatherSpace: I'm sorry you were born.
(21:53:31) ChatBot: (673237) has been logged out (Kicked).

Code: Select all

(10:08:02) Bartimaeus: you do know run I youtube channel for my favorite music, right?
User avatar
Lanaya
Banned-To-Be
Posts: 1378
Joined: July 28th, 2008, 6:28 pm
Title: Administrator

Re: Deprotedtion problems

Post by Lanaya »

In GUI:
Spoiler:

Code: Select all

SetName
    Events
        Player - Player 1 (Red) types a chat message containing -name as A substring
        Player - Player 2 (Blue) types a chat message containing -name as A substring
        Player - Player 3 (Teal) types a chat message containing -name as A substring
        Player - Player 4 (Purple) types a chat message containing -name as A substring
        Player - Player 5 (Yellow) types a chat message containing -name as A substring
        Player - Player 6 (Orange) types a chat message containing -name as A substring
        Player - Player 7 (Green) types a chat message containing -name as A substring
        Player - Player 8 (Pink) types a chat message containing -name as A substring
        Player - Player 9 (Gray) types a chat message containing -name as A substring
        Player - Player 10 (Light Blue) types a chat message containing -name as A substring
        Player - Player 11 (Dark green) types a chat message containing -name as A substring
        Player - Player 12 (Brown) types a chat message containing -name as A substring
    Conditions
    Actions
        Player - Set name of (Triggering player) to (Substring((Entered chat string), 7, 200))
In JASS:
Spoiler:
under globals

Code: Select all

trigger gg_trg_SetName=null
Under endglobals

Code: Select all

function Trig_SetName_Actions takes nothing returns nothing
    call SetPlayerName( GetTriggerPlayer(), SubStringBJ(GetEventPlayerChatString(), 7, 200) )
endfunction
function InitTrig_SetName takes nothing returns nothing
    set gg_trg_SetName = CreateTrigger(  )
    call TriggerRegisterPlayerChatEvent( gg_trg_SetName, Player(0), "-name", false )
    call TriggerRegisterPlayerChatEvent( gg_trg_SetName, Player(1), "-name", false )
    call TriggerRegisterPlayerChatEvent( gg_trg_SetName, Player(2), "-name", false )
    call TriggerRegisterPlayerChatEvent( gg_trg_SetName, Player(3), "-name", false )
    call TriggerRegisterPlayerChatEvent( gg_trg_SetName, Player(4), "-name", false )
    call TriggerRegisterPlayerChatEvent( gg_trg_SetName, Player(5), "-name", false )
    call TriggerRegisterPlayerChatEvent( gg_trg_SetName, Player(6), "-name", false )
    call TriggerRegisterPlayerChatEvent( gg_trg_SetName, Player(7), "-name", false )
    call TriggerRegisterPlayerChatEvent( gg_trg_SetName, Player(8), "-name", false )
    call TriggerRegisterPlayerChatEvent( gg_trg_SetName, Player(9), "-name", false )
    call TriggerRegisterPlayerChatEvent( gg_trg_SetName, Player(10), "-name", false )
    call TriggerRegisterPlayerChatEvent( gg_trg_SetName, Player(11), "-name", false )
    call TriggerAddAction( gg_trg_SetName, function Trig_SetName_Actions )
endfunction
Image
League of legends North America - Nietono
User avatar
haxorico
Super Moderator
Posts: 3197
Joined: February 24th, 2009, 1:31 pm
Location: JEW LAND
Been thanked: 1 time

Re: Deprotedtion problems

Post by haxorico »

Lanaya wrote:In GUI:
Spoiler:

Code: Select all

SetName
    Events
        Player - Player 1 (Red) types a chat message containing -name as A substring
        Player - Player 2 (Blue) types a chat message containing -name as A substring
        Player - Player 3 (Teal) types a chat message containing -name as A substring
        Player - Player 4 (Purple) types a chat message containing -name as A substring
        Player - Player 5 (Yellow) types a chat message containing -name as A substring
        Player - Player 6 (Orange) types a chat message containing -name as A substring
        Player - Player 7 (Green) types a chat message containing -name as A substring
        Player - Player 8 (Pink) types a chat message containing -name as A substring
        Player - Player 9 (Gray) types a chat message containing -name as A substring
        Player - Player 10 (Light Blue) types a chat message containing -name as A substring
        Player - Player 11 (Dark green) types a chat message containing -name as A substring
        Player - Player 12 (Brown) types a chat message containing -name as A substring
    Conditions
    Actions
        Player - Set name of (Triggering player) to (Substring((Entered chat string), 7, 200))
In JASS:
Spoiler:
under globals

Code: Select all

trigger gg_trg_SetName=null
Under endglobals

Code: Select all

function Trig_SetName_Actions takes nothing returns nothing
    call SetPlayerName( GetTriggerPlayer(), SubStringBJ(GetEventPlayerChatString(), 7, 200) )
endfunction
function InitTrig_SetName takes nothing returns nothing
local integer i2i = 0
    set gg_trg_SetName = CreateTrigger(  )
loop
exitwhen i2i>11
    call TriggerRegisterPlayerChatEvent( gg_trg_SetName, Player(i2i), "-name", false )
set i2i=i2i+1
endloop
    call TriggerAddAction( gg_trg_SetName, function Trig_SetName_Actions )
endfunction
looped for u
Image
Spoiler:
(02:24:09)

Code: Select all

ChatBot: FatherSpace logs into the Chat.
(02:24:28) Lanaya: Gtfo ken.
(02:24:33) ChatBot: FatherSpace logs out of the Chat.
(02:24:40) Lanaya: Thought so. bitch.
(02:24:44) ChatBot: FatherSpace logs into the Chat.
(02:24:48) FatherSpace: Can I come back yet?
(02:24:51) Lanaya: What'd i say earlier.
(02:24:51) Lanaya: No.
(02:24:58) FatherSpace: Let's try this...
(02:25:01) ChatBot: Lanaya has been logged out (Kicked).

Code: Select all


(14:33:51) 2Pac: Do you know what'S so funny?
(14:34:01) Lanaya: No, please show me.
(14:34:07) 2Pac: This.
(14:34:09) ChatBot: Lanaya has been logged out (Kicked).
(14:34:10) 2Pac: 

Code: Select all

(14:35:59) haxorico: No one will belive me if I say "I got this song from 2pac on MSN" lolz ^^
(14:36:02) Lanaya: lolz.
(14:36:16) 2Pac: I AIN'T DEAD FFS.
(14:36:26) 2Pac: I'm a living legend, y'now.
(14:37:17) haxorico: why is 2Pac a legend?
(14:37:28) Lanaya: He's the worse rapper evar.

Code: Select all

(15:42:51) Lanaya: can i suck , . . .

Code: Select all

(13:55:21) ChatBot: 2Pac rolls 1d100 and gets 1.
(13:55:21) ChatBot: haxorico rolls 1d2 and gets 2.
(13:55:27) haxorico: owned?

Code: Select all

GeorgeMots: xplain what happens in SP. Why cant you save?
dast.-:i need play with 2 players

Code: Select all

(21:53:08) (673237): plzplzplz, im sorry about before.
(21:53:26) FatherSpace: I'm sorry you were born.
(21:53:31) ChatBot: (673237) has been logged out (Kicked).

Code: Select all

(10:08:02) Bartimaeus: you do know run I youtube channel for my favorite music, right?
tiiger111
Newcomer
Posts: 5
Joined: March 12th, 2009, 3:03 pm

Re: Deprotedtion problems

Post by tiiger111 »

Thanks 4 help. I just didn't know where to post it, and i didn't find any tuts 4 it.
Thank's a lot 4 help !! No deprotection is needed then.

But... Is it even possible to deprotect .w3m files ?
And man... YOU ARE PRO !
User avatar
Lanaya
Banned-To-Be
Posts: 1378
Joined: July 28th, 2008, 6:28 pm
Title: Administrator

Re: Deprotedtion problems

Post by Lanaya »

yeah,

just open the xdep configuration file and change ever w3x into w3m
Image
League of legends North America - Nietono
tiiger111
Newcomer
Posts: 5
Joined: March 12th, 2009, 3:03 pm

Re: Deprotedtion problems

Post by tiiger111 »

K, ty 4 help !