• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!

[Spell] Spells file on MPQs

Status
Not open for further replies.
Level 2
Joined
Mar 10, 2013
Messages
10
Hello guys, i've been translating a map called pokemon orpg 0.6g, as its korean, and almost everything is done, like the jass(scripts/war3map.j), units(Units/campaignunitfunc.txt) and items (Units/itemfunc.txt) but i didn't find the file that contains the spells. I've searched a lot and couldn't find any txt containing spells. Are they in another format? What's the name and path of the file? Thanks!
 
Level 28
Joined
Jan 26, 2007
Messages
4,789
Those are usually found in war3map.wts (along with loads of other strings).
It's in this format:
Code:
STRING X
// Abilities: RAW_ID (ABIlITY_NAME), Ubertip (Tooltip - Normal - Extended (aub1))
{
ABILITY_TOOLTIP
}

An example:
Code:
STRING 340
// Abilities: A009 (Raging Bull), Ubertip (Tooltip - Normal - Extended (aub1))
{
Greatly increases your damage output, but decreases your movement speed.|n|n|c00884444Damage Increase:|r |c00448844+100%|r|n|c00884444MS Decrease:|r |c00448844-60%|r|n|c00884444Duration:|r |c004488448 Seconds|r|n|n|c00884444Cooldown:|r |c0044884414 sec|r
}
 
Level 2
Joined
Mar 10, 2013
Messages
10
Those are usually found in war3map.wts (along with loads of other strings).
It's in this format:
Code:
STRING X
// Abilities: RAW_ID (ABIlITY_NAME), Ubertip (Tooltip - Normal - Extended (aub1))
{
ABILITY_TOOLTIP
}

An example:
Code:
STRING 340
// Abilities: A009 (Raging Bull), Ubertip (Tooltip - Normal - Extended (aub1))
{
Greatly increases your damage output, but decreases your movement speed.|n|n|c00884444Damage Increase:|r |c00448844+100%|r|n|c00884444MS Decrease:|r |c00448844-60%|r|n|c00884444Duration:|r |c004488448 Seconds|r|n|n|c00884444Cooldown:|r |c0044884414 sec|r
}

what if the map doesnt have war3map.wts on the files? is there any other possibility?
 
Status
Not open for further replies.
Top