Map Name:AnimeFinalBattle5.3.w3x
Map Link: https://drive.google.com/open?id=1thndP ... s9ZYEMtDL0
[Hint]:Inside got 2 model pack , remember put 2 modelpack into miles folder !
[EX³]Request: Please extract the file war3map.j.
[IN⁴]Description: The map has logins a way to change the name from a base name to a name with color or signs and the following code is used -loadID but there are several names that do not log in with that command and others that do not know It is your command.
[IN⁴]Request: Please can you give me all the names and their respective logins for example:
Name Renkouki => Code "Kiyorime".
!!Thanks in advance to anyone who could do this!!
[IN⁴+EX³]AnimeFinalBattle5.3.w3x
Moderator: Cheaters
-
- Member
- Posts: 71
- Joined: February 22nd, 2016, 1:56 am
- Been thanked: 2 times
-
- Also Not an Admin, but closer than devoltz
- Posts: 1655
- Joined: February 14th, 2018, 5:35 am
- Title: Just Another S.Mod
- Been thanked: 6 times
Re: [IN⁴+EX³]AnimeFinalBattle5.3.w3x
Gave you the Warcraft 3's player name as well. Since I don't know how it's supposed to work.
Spoiler:
You do not have the required permissions to view the files attached to this post.
-
- Member
- Posts: 71
- Joined: February 22nd, 2016, 1:56 am
- Been thanked: 2 times
Re: [IN⁴+EX³]AnimeFinalBattle5.3.w3x
If I already realized I tried to use the codes with the names and nothing happens I really !!thank you for extracting me in file j!! and I hope to manage to discover how those names work with their codes
You do not have the required permissions to view the files attached to this post.
-
- Also Not an Admin, but closer than devoltz
- Posts: 1655
- Joined: February 14th, 2018, 5:35 am
- Title: Just Another S.Mod
- Been thanked: 6 times
Re: [IN⁴+EX³]AnimeFinalBattle5.3.w3x
Basically it gonna work if C returns true otherwise won't work... there's a special check. I tried here and when I changed the set C of this function to true it worked just fine:
I uploaded the version with that edit.
Code: Select all
function mS takes player p,string cS,string MS,integer n returns boolean
call iS()
set n=n+1
if GetLocalPlayer()==p then
call RS(p,n,"save\\"+cS+"\\pre"+MS+".sav")
endif
call lS(p,n)
set C=HS(p,n) <---- changed it to set C=true
set R=false
return C
endfunction
You do not have the required permissions to view the files attached to this post.
-
- Member
- Posts: 71
- Joined: February 22nd, 2016, 1:56 am
- Been thanked: 2 times
Re: [IN⁴+EX³]AnimeFinalBattle5.3.w3x
I already see a special check, that would have to do with the file "AFB.reg"
in the folder called "For user that can not activate sav file" which makes the following function:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Blizzard Entertainment\Warcraft III]
"Allow Local Files"=dword:00000001
in short I have seen that the change you did worked perfectly and you can activate the login with the names and codes that you passed me.
!!Thank you very much nuzamacuxe-sense!!
in the folder called "For user that can not activate sav file" which makes the following function:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Blizzard Entertainment\Warcraft III]
"Allow Local Files"=dword:00000001
in short I have seen that the change you did worked perfectly and you can activate the login with the names and codes that you passed me.
!!Thank you very much nuzamacuxe-sense!!
-
- Also Not an Admin, but closer than devoltz
- Posts: 1655
- Joined: February 14th, 2018, 5:35 am
- Title: Just Another S.Mod
- Been thanked: 6 times
Re: [IN⁴+EX³]AnimeFinalBattle5.3.w3x
Yeah basically it just allows to use Local Files (it's common on RPGs to save functions etc). I didn't check the function HS so maybe there are some extra checks.