HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Unprotect Map

01-30-2005, 09:05 AM#1
TGhost
Will someone plz unprotect the map i attached to this post. I really need to see how they did the triggers. I promise i wont steal ANYTHING, i just need some triggering help. And i belive that this map can tell me everything i need to know.
Thanks in advance
01-30-2005, 10:49 AM#2
PatruX
Simply ask us for how to do certain triggers and we'll help you.
01-30-2005, 11:07 AM#3
TGhost
Its just that i need some help with alot of triggers. Im very good at triggering but some of theese things a can't solve on my own. So i really need to see how the triggers in that map are done. Especially the special effects.
01-30-2005, 11:12 AM#4
Bibendus
The last thing you can retrieve in a protected map is the GUI of Triggers soo dont waste time to try to unprotect it.
If you know a bit of jass look the .j file in the map else ask us what help you need.
01-30-2005, 11:19 AM#5
Tabris
Hum........
And this forum doesnt allow unprotect, no?
If someone has protected his map, you have to respect his choice.

PS it's not about your aim, but if u unprotect, you unprotect ^_^ and others would be able to steal.
Better way : ask what you don't know how to do and see the tutorials.
01-30-2005, 12:20 PM#6
TGhost
ok, im gonna ask you guys about how to do it. Then lets see if you can help me.
I need to know how to make transformations that doubles or triples your stats etc. if you know dragonball you will know that they are able to transform into diffrent forms like Super Saiyan,2,3 etc.
I need to know how to make a transformation that gives you double stats, and then when you revert it removes the stat bonus. Im able to make the transformations, but i dont know how to make the transformation double all stats, and then remove the bonuses when you revert.
01-30-2005, 12:30 PM#7
Tabris
Quote:
Originally Posted by TGhost
ok, im gonna ask you guys about how to do it. Then lets see if you can help me.
I need to know how to make transformations that doubles or triples your stats etc. if you know dragonball you will know that they are able to transform into diffrent forms like Super Saiyan,2,3 etc.
I need to know how to make a transformation that gives you double stats, and then when you revert it removes the stat bonus. Im able to make the transformations, but i dont know how to make the transformation double all stats, and then remove the bonuses when you revert.

well iI have not my editor here but u can set the stats of a unit...

well goku has stats x/x/x
-> SSJ1 set stats to 2x/2x/2x + set array variable x/x/x
-> end of SSJ1 set stats = actual stats - array variable

hum i don't know if u can get the stats of a hero if u can't u have to calculate it :
stat = base + lv*increment
01-30-2005, 01:21 PM#8
TGhost
maybe you are right, so if goku transforms then i double his stats. Then when he reverts i calculate his base stats. Maybe that will work. I dunno.
But if he levels up, his newly gained stats won't be doubled up. but that doesn't really matter.
01-30-2005, 01:36 PM#9
Tabris
Quote:
Originally Posted by TGhost
maybe you are right, so if goku transforms then i double his stats. Then when he reverts i calculate his base stats. Maybe that will work. I dunno.
But if he levels up, his newly gained stats won't be doubled up. but that doesn't really matter.

hum ... no ^^
calculate stat is only to find x, and you have to find it a the beginning but it must have a function to get stat of hero, no?
(if not you have to declare variable and count the stats....)
but well yes if he lv up his stats wont be double : u need to fire the trigger again ^_^


like trigger SSup and trigger SSdown
GOKU 1/1/1
SSup(Goku) _____________ GOKU 2/2/2 __________ array variable 1/1/1
LVup(Goku) ______________ GOKU 3/3/3 ___________ +1 to all stats
SSdown(Goku) __________ GOKU 2/2/2 ___________ 3-1=2 ^_^
SSup(Goku) ____________ GOKU 4/4/4 ___________ array variable 2/2/2