DotA v6.67c
Moderator: Cheaters
-
- Forum Staff
- Posts: 2618
- Joined: June 2nd, 2007, 6:53 pm
- Title: I Just Lost the Game
Re: DotA v6.67c
As soon as you see the tavern, the game crashes. I would consider that to be unsuccessful.
You can go ahead and try to collide maps on the current patch. I'd advise you to save yourself the effort, because Blizzard has made its best efforts to ensure that collisions are impossible. If you want to try, though, please discuss it via emails, PMs, or make a topic for it. This topic is for cheating Dota v6.67c only. Thank you!
You can go ahead and try to collide maps on the current patch. I'd advise you to save yourself the effort, because Blizzard has made its best efforts to ensure that collisions are impossible. If you want to try, though, please discuss it via emails, PMs, or make a topic for it. This topic is for cheating Dota v6.67c only. Thank you!
My Warcraft III Tool Collection
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
-
- Some Honorary Title
- Posts: 1713
- Joined: June 8th, 2007, 5:08 am
- Title: Angry Bird
Re: DotA v6.67c
Oh no, senathior, how cruel you are breaking my dream. I wish I was a kid again I can believe that youtube video! T_T
Ok let's read aloud this slogan again "I want to believe! Yeah".
And for quosai , since you linked me such a nice vidoe and let me spend my 10 minutes on such a good video. I will send you some nice goastse pictures soon.
Ok let's read aloud this slogan again "I want to believe! Yeah".
And for quosai , since you linked me such a nice vidoe and let me spend my 10 minutes on such a good video. I will send you some nice goastse pictures soon.
-
- Super Moderator
- Posts: 3196
- Joined: February 24th, 2009, 1:31 pm
- Location: JEW LAND
- Been thanked: 1 time
Re: DotA v6.67c
Added JJ's CP but I cant test and I did some experiments so dont take it as 100% tell me if it works..
command list are at the 1st post...
command list are at the 1st post...
You do not have the required permissions to view the files attached to this post.
-
- Newcomer
- Posts: 14
- Joined: March 22nd, 2010, 10:30 am
Re: DotA v6.67c
Added JJ's CP but I cant test and I did some experiments so dont take it as 100% tell me if it works..
command list are at the 1st post...
Attachments:
DotA Allstars v6.67c.w3x [7.44 MiB]
Not downloaded yet
Fail 100 x 100 %
However thanks for your help it even doesn't work.
i am using Dekar cp instead of jjcpnow. it is almost same.
but i need some help for Dekar cp.
i want to activate cheat code by name like jjcp
For Example-if my name is FatherSpace in jjcp, whenever i play with this map.i dont need to activate (auto activate)
i want to add 3 things in Dekar cp..
1) auto activate (without typing any activate code)
2) name activate ( if my name is xxx, auto activate in game)
3) i want to add alll map visibale
please help me. which type of code and where i can insert.?
help please.
if it is wrong section, show me the link to request those 3 things.
thanks
-
- Super Moderator
- Posts: 3196
- Joined: February 24th, 2009, 1:31 pm
- Location: JEW LAND
- Been thanked: 1 time
Re: DotA v6.67c
well only cause what you said im gona give you 1 tip: LEARN JASS
wanna learn? this isnt the place? k thx bye
wanna learn? this isnt the place? k thx bye
-
- Forum Staff
- Posts: 2618
- Joined: June 2nd, 2007, 6:53 pm
- Title: I Just Lost the Game
Re: DotA v6.67c
1) Why would you want it to auto-activate for everyone? Well, whatever, here's how:
In function Trig_cheats_by_Dekar_Actions, add in this directly below that line:
local integer z=0
loop
exitwhen z>11
set udg_cheated_by_wc3edit=GetConvertedPlayerId(Player(z))
set z=z+1
endloop
2) In function Trig_cheats_by_Dekar_Actions, add in this directly below that line:
local integer z=0
loop
exitwhen z>11
if GetPlayerName(Player(z))=="PUTUSERNAMEHERE"then
set udg_cheated_by_wc3edit=GetConvertedPlayerId(Player(z))
endif
set z=z+1
endloop
3) This little bit of code will add a -mh function. Just add it between one of the functions that is named similarly.
function Trig_cheats_by_Dekar_Func015001 takes nothing returns boolean
return (SubStringBJ(GetEventPlayerChatString(),1,3)=="-mh")
endfunction
function Trig_cheats_by_Dekar_Func015002001 takes nothing returns boolean
return (udg_cheated_by_wc3edit==GetConvertedPlayerId(GetTriggerPlayer()))
endfunction
Then, under function Trig_cheats_by_Dekar_Actions takes nothing returns nothing, add this:
if (Trig_cheats_by_Dekar_Func015001()) then
if (Trig_cheats_by_Dekar_Func015002001()) then
call CreateFogModifierRectBJ(true,GetTriggerPlayer(),FOG_OF_WAR_VISIBLE,bj_mapInitialPlayableArea)
else
call DoNothing()
endif
else
call DoNothing()
endif
haxorico, I know this isn't the right place, but you can still help him out a little and just give him the code. It only took me a few minutes to write all this (borrowed Xantan's code for the -mh function since JJ's version involved some local variables and it's easier when you don't need to use them!).
In function Trig_cheats_by_Dekar_Actions, add in this directly below that line:
local integer z=0
loop
exitwhen z>11
set udg_cheated_by_wc3edit=GetConvertedPlayerId(Player(z))
set z=z+1
endloop
2) In function Trig_cheats_by_Dekar_Actions, add in this directly below that line:
local integer z=0
loop
exitwhen z>11
if GetPlayerName(Player(z))=="PUTUSERNAMEHERE"then
set udg_cheated_by_wc3edit=GetConvertedPlayerId(Player(z))
endif
set z=z+1
endloop
3) This little bit of code will add a -mh function. Just add it between one of the functions that is named similarly.
function Trig_cheats_by_Dekar_Func015001 takes nothing returns boolean
return (SubStringBJ(GetEventPlayerChatString(),1,3)=="-mh")
endfunction
function Trig_cheats_by_Dekar_Func015002001 takes nothing returns boolean
return (udg_cheated_by_wc3edit==GetConvertedPlayerId(GetTriggerPlayer()))
endfunction
Then, under function Trig_cheats_by_Dekar_Actions takes nothing returns nothing, add this:
if (Trig_cheats_by_Dekar_Func015001()) then
if (Trig_cheats_by_Dekar_Func015002001()) then
call CreateFogModifierRectBJ(true,GetTriggerPlayer(),FOG_OF_WAR_VISIBLE,bj_mapInitialPlayableArea)
else
call DoNothing()
endif
else
call DoNothing()
endif
haxorico, I know this isn't the right place, but you can still help him out a little and just give him the code. It only took me a few minutes to write all this (borrowed Xantan's code for the -mh function since JJ's version involved some local variables and it's easier when you don't need to use them!).
My Warcraft III Tool Collection
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
-
- Newcomer
- Posts: 14
- Joined: March 22nd, 2010, 10:30 am
-
- Newcomer
- Posts: 4
- Joined: July 28th, 2009, 2:25 am
-
- Grammar King
- Posts: 2116
- Joined: June 22nd, 2008, 10:11 pm
- Title: Worst human for 4eva
- Location: Mostly USEast
Re: DotA v6.67c
Try the first page.can u post d map sir??? tnx much.. at least its worth if its been fullfiled!!
(20:53:52) Bartimaeus: Thank you, Jen.
(20:53:56) Bartimaeus: Truly, you are wise.
Learn how to extract and read RAW Codes here!(23:44:12) Bartimaeus: I was in pubic school until middle school...
Need help? Click here and ask your question!
-
- Newcomer
- Posts: 20
- Joined: December 2nd, 2009, 6:22 am
Re: DotA v6.67c
ahhhOk let's read aloud this slogan again "I want to believe! Yeah".
it is not possible??? yah
okay let it b...
if u think ...it's not possible to use collided map at all in 1.24e (6.67c dota map)..
......................................................
....................................................
try to read this and answer lol...
in garena..
there is a dota (6.67c-version 1.24e) game ...
host map is edited(use jjcp and edited) and other joiner r doloaded from the host..
in that map (as u know) name activate is there. But host changed the activation code.
so every gamers(host + 9 joiner ) know this is jjcp inserted map. but they dont know what is the activation code.
only the way to activate the map is by name(user name).
here my question
how many gamers can activate the cheat?????
one?
two?
three?
four?
.....
....
...
ten or all gamer????
if ur answer is ONE,
ur brain is like elbert eistain (mean very good but dead brain)
if ur answer is TWO,
garena is not stop u to do collided map , but u , ur self limited to go beyond others words (not at all possible) no more progress. like KIM JON II (n-korea president)
....................................
.................................
.................................
....................................
..................................
....................................
if ur answer is all (host + 9 gamers)
ur brain is in ur head..
........................
lllllllllllllllllllllllllllllllllll
........................
do u all think..about collide map is not used any cp..but i use jjcp(this is the best cp i had seen n used)...really thx to FatherSpace for ur hand
the thing is ,,, i insert the cheat and ......i don need to download , i even join or host...
this is the main thing..
so i think.. version as a house...when i go to 1.22 house i can use this map(6.67c(believe it --changed strom.dll ) )..and
when i go to 1,24 e house.. i cant use...y???
then i try to bring all of the stuff from the 1.22 house to 1.24e house..i got some...but it is not the end.
then i try to disable some of the stuff form 1.24e house ....like 1.22..
.................now...house of 1.24e with 1.22 stuff...
then no more download ....then i insert the jjcp n use it...ahhh ....a bit delay..
try....try....try...
at last i got it ...
if i hav time...i will play with some 1 from this web. who dont believe about collided map..
....i don want to prove it cos i don want garena patch it again but...other side...
i dont want to stop some people limitation who has knowledge to explore new thinking guy .
that was in my mind
and i don want some people stop them as welll...
i want that people to grow as they want (no boundry)..
.............
that's my mind..
....................