Hey can anyone help me?
Moderator: Cheaters
-
- Newcomer
- Posts: 11
- Joined: April 23rd, 2011, 8:12 am
Hey can anyone help me?
hi can i ask why when i insert JJCP in to my war3map.j then i test the map it always came out an error?
-
- Senior Member
- Posts: 134
- Joined: September 25th, 2011, 1:15 pm
- Title: Slacking
Re: Hey can anyone help me?
You did it wrong!
(Made by: Risugami) | Risugami's Signature Workshop
"As a young boy, I was taught in high school that hacking was cool. - Kevin Mitnick"
-
- Forum Staff
- Posts: 762
- Joined: October 27th, 2009, 12:18 pm
- Location: Australia, GMT+8
Re: Hey can anyone help me?
Thats pretty much sums up everything that can be deduced from the information you've given usRisugami wrote:You did it wrong!
If you have any questions drop in by chat sometime, chances are there'll be someone who can help you that's afking there, so the next best thing is to click the link on UndeadxAssassin's Sig and ask your question there.
-
- Senior Member
- Posts: 134
- Joined: September 25th, 2011, 1:15 pm
- Title: Slacking
Re: Hey can anyone help me?
Well, he might have inserted the cheatpack incorrectly. Some anti-cheats, or some other things. I really do not know, maybe if he'd post the war3map.j.Kyoshiro wrote:Thats pretty much sums up everything that can be deduced from the information you've given usRisugami wrote:You did it wrong!
(Made by: Risugami) | Risugami's Signature Workshop
"As a young boy, I was taught in high school that hacking was cool. - Kevin Mitnick"
-
- Crusader
- Posts: 4236
- Joined: January 27th, 2007, 4:46 pm
- Location: Greece, Veria
-
- Super Moderator
- Posts: 3196
- Joined: February 24th, 2009, 1:31 pm
- Location: JEW LAND
- Been thanked: 1 time
Re: Hey can anyone help me?
I think you wanted to say, if he DIDN'T - the map wouldn't work. As in, he SHOULD delete it.GeorgeMots wrote:or if he deleted attributes.
-
- Newcomer
- Posts: 11
- Joined: April 23rd, 2011, 8:12 am
Re: Hey can anyone help me?
i just deleted the attributes but when i wanted to create the room i double click and it didnt create the room
You do not have the required permissions to view the files attached to this post.
-
- Senior Member
- Posts: 134
- Joined: September 25th, 2011, 1:15 pm
- Title: Slacking
Re: Hey can anyone help me?
You did the function main wrong, you should put the function main parts AFTER the locals.tanfuwei wrote:i just deleted the attributes but when i wanted to create the room i double click and it didnt create the room
This is what you did:
Spoiler:
Spoiler:
(Made by: Risugami) | Risugami's Signature Workshop
"As a young boy, I was taught in high school that hacking was cool. - Kevin Mitnick"
-
- Newcomer
- Posts: 11
- Joined: April 23rd, 2011, 8:12 am
Re: Hey can anyone help me?
ohh okok thank you i still got one more
can u help me seee what wrong with it please?
can u help me seee what wrong with it please?
You do not have the required permissions to view the files attached to this post.
-
- Senior Member
- Posts: 134
- Joined: September 25th, 2011, 1:15 pm
- Title: Slacking
Re: Hey can anyone help me?
Locals are always at the top, you're having problems onto where you place your locals.
Basically, you place the function main parts AFTER the locals if there's any, if there isn't any locals. You must place the function main part below the function main.
Well, sounds confusing? You should take note that locals must always be at the top of a function. And the code comes after it, like for example:
If that's the case, you should put the function main part after the locals which is underneath local real b.
But if there's no locals preset, you'll need to put the function main part after the function main.
Basically, you place the function main parts AFTER the locals if there's any, if there isn't any locals. You must place the function main part below the function main.
Well, sounds confusing? You should take note that locals must always be at the top of a function. And the code comes after it, like for example:
Code: Select all
function main takes nothing returns nothing
local real a
local real b
<put function main parts here>
call funnyfunc()
endfunction
But if there's no locals preset, you'll need to put the function main part after the function main.
Code: Select all
function main takes nothing returns nothing
<put function main parts here>
call funnyfunc()
endfunction
(Made by: Risugami) | Risugami's Signature Workshop
"As a young boy, I was taught in high school that hacking was cool. - Kevin Mitnick"