Map Name: Naruto Castle Defence 4.21
Map link: see attachment
I was translating the script file in the map and I think I miss added or miss deleted something in the script file the caused the map unplayable. Please help me to find out the error!!
The original script file:see attachment
Please help me someone...!
Also I would like to have the raw code(actually, what is it?) because I am curious of what it is.
Also, can someone tell where to translate the hero spell(which part of the map)?
[Edit+RC]Naruto Castle Defence 4.21
Moderator: Cheaters
-
- Junior Member
- Posts: 31
- Joined: August 27th, 2012, 2:37 am
[Edit+RC]Naruto Castle Defence 4.21
You do not have the required permissions to view the files attached to this post.
Last edited by s200200124 on July 29th, 2013, 1:09 am, edited 3 times in total.
-
- Forum Spammer
- Posts: 943
- Joined: March 30th, 2013, 11:05 am
- Title: Gamma Ray
- Location: Earth
Re: [Edit+RC]Naruto Castle Defence 4.21
Here are more info about Rawcodes ---> http://forum.wc3edit.net/deprotection-c ... 15335.html
-
- Junior Member
- Posts: 31
- Joined: August 27th, 2012, 2:37 am
-
- Old Wrinkly Member
- Posts: 219
- Joined: April 21st, 2009, 12:30 am
- Location: Việt Nam
Re: [Edit+RC]Naruto Castle Defence 4.21
Look like you upload the wrong map cause the map is playable for me. Can you recheck it?
-
- Junior Member
- Posts: 31
- Joined: August 27th, 2012, 2:37 am
Re: [Edit+RC]Naruto Castle Defence 4.21
wow...I uploaded the wrong map...-_- oops
reuploaded, thankyou@whiteugn
reuploaded, thankyou@whiteugn
-
- Old Wrinkly Member
- Posts: 219
- Joined: April 21st, 2009, 12:30 am
- Location: Việt Nam
Re: [Edit+RC]Naruto Castle Defence 4.21
You can use Jasscraft "Check syntax" to indicate which line in your code cause the map unplayable.
You do not have the required permissions to view the files attached to this post.
-
- Junior Member
- Posts: 31
- Joined: August 27th, 2012, 2:37 am
Re: [Edit+RC]Naruto Castle Defence 4.21
Thankyou very much!!
I tried Jasscraft, but it was shit...
Jasscraft gave me error even when I checked the WORKING script(just to see if this software actually works or not.)
Did you just used Jasscraft to check error?
@whitegun
I tried Jasscraft, but it was shit...
Jasscraft gave me error even when I checked the WORKING script(just to see if this software actually works or not.)
Did you just used Jasscraft to check error?
@whitegun
-
- Junior Member
- Posts: 31
- Joined: August 27th, 2012, 2:37 am
Re: [Edit+RC]Naruto Castle Defence 4.21
And may you tell me what I did wrong? (I guess it was just simply some stupid error)
-
- Old Wrinkly Member
- Posts: 219
- Joined: April 21st, 2009, 12:30 am
- Location: Việt Nam
Re: [Edit+RC]Naruto Castle Defence 4.21
Yes, i just use Jasscraft to check error.
Jasscraft found the error and indicate the line, you should go to that line and fix that error.
What wrong you did is:
1. String that contains single backslash(\) escape character. (ex: you want to display "aa\aa", you put in jass the string = "aa\aa" is not correct, You should use the string = "aa\\aa".)
2. You delete the string but forgot the rest, ex:
Original:
Your, which cause error(You want to delete string "b"):
Expected:
Jasscraft found the error and indicate the line, you should go to that line and fix that error.
What wrong you did is:
1. String that contains single backslash(\) escape character. (ex: you want to display "aa\aa", you put in jass the string = "aa\aa" is not correct, You should use the string = "aa\\aa".)
2. You delete the string but forgot the rest, ex:
Original:
Code: Select all
string ex = "a"+"b"+"c"+"d"
Code: Select all
string ex = "a"+ +"c"+"d"
Code: Select all
string ex = "a"+"c"+"d"
-
- Junior Member
- Posts: 31
- Joined: August 27th, 2012, 2:37 am