[Edit+RC]Naruto Castle Defence 4.21

This is where fulfilled requests go. You can make a new thread here if you edit a map and want to share it, such as if you cheat a new map without anybody actually requesting it.

Moderator: Cheaters

s200200124
Junior Member
Posts: 31
Joined: August 27th, 2012, 2:37 am

[Edit+RC]Naruto Castle Defence 4.21

Post by s200200124 »

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)?
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.
User avatar
NumberXIII
Forum Spammer
Posts: 943
Joined: March 30th, 2013, 11:05 am
Title: Gamma Ray
Location: Earth

Re: [Edit+RC]Naruto Castle Defence 4.21

Post by NumberXIII »

Here are more info about Rawcodes ---> http://forum.wc3edit.net/deprotection-c ... 15335.html
s200200124
Junior Member
Posts: 31
Joined: August 27th, 2012, 2:37 am

Re: [Edit+RC]Naruto Castle Defence 4.21

Post by s200200124 »

Thankyou @number xiii
User avatar
whitegun
Old Wrinkly Member
Posts: 219
Joined: April 21st, 2009, 12:30 am
Location: Việt Nam

Re: [Edit+RC]Naruto Castle Defence 4.21

Post by whitegun »

Look like you upload the wrong map cause the map is playable for me. Can you recheck it?
s200200124
Junior Member
Posts: 31
Joined: August 27th, 2012, 2:37 am

Re: [Edit+RC]Naruto Castle Defence 4.21

Post by s200200124 »

wow...I uploaded the wrong map...-_- oops
reuploaded, thankyou@whiteugn
User avatar
whitegun
Old Wrinkly Member
Posts: 219
Joined: April 21st, 2009, 12:30 am
Location: Việt Nam

Re: [Edit+RC]Naruto Castle Defence 4.21

Post by whitegun »

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.
s200200124
Junior Member
Posts: 31
Joined: August 27th, 2012, 2:37 am

Re: [Edit+RC]Naruto Castle Defence 4.21

Post by s200200124 »

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
s200200124
Junior Member
Posts: 31
Joined: August 27th, 2012, 2:37 am

Re: [Edit+RC]Naruto Castle Defence 4.21

Post by s200200124 »

And may you tell me what I did wrong? (I guess it was just simply some stupid error)
User avatar
whitegun
Old Wrinkly Member
Posts: 219
Joined: April 21st, 2009, 12:30 am
Location: Việt Nam

Re: [Edit+RC]Naruto Castle Defence 4.21

Post by whitegun »

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:

Code: Select all

string ex = "a"+"b"+"c"+"d"
Your, which cause error(You want to delete string "b"):

Code: Select all

string ex = "a"+ +"c"+"d"
Expected:

Code: Select all

string ex = "a"+"c"+"d"
s200200124
Junior Member
Posts: 31
Joined: August 27th, 2012, 2:37 am

Re: [Edit+RC]Naruto Castle Defence 4.21

Post by s200200124 »

I see. Thanks alot! :D