[List] String/Integer Codes (WIP)

elmstfreddie

The Finglonger
Reaction score
203
*Requesting name change to
  • Integer and String Codes (WIP)

    Just a list of codes for things like types of lightning, or order codes for casting spells (ie Orc - Tauren Chieftain - Shockwave).

    Integer Codes

    Expiration Timers
    • Animate Dead = 'BUan'
    • Disease Cloud = 'Bapl'
    • Force of Nature = 'BEfn'
    • Generic = 'BTLF'
    • Healing Ward = 'Bhwd'
    • Raise Dead = 'Brai'
    • Water Elemental = 'BHwe'

    String Codes

    Lightning
    • Chain Lightning - Primary = "CLPB"
    • Chain Lightning - Secondary = "CLSB"
    • Drain = "DRAB"
    • Drain Life = "DRAL"
    • Drain Mana = "DRAM"
    • Finger of Death = "AFOD"
    • Forked Lightning = "FORK"
    • Healing Wave - Primary = "HWPB"
    • Healing Wave - Secondary = "HWSB"
    • Lightning Attack = "CHIM"
    • Magic Leash = "LEAS"
    • Mana Burn = "MBUR"
    • Mana Flare = "MFPB"
    • Spirit Link = "SPLK"

    Point Target Orders
    • Attack Move To = "attack"
    • Attack Ground = "attackground"
    • Move To = "move"
    • Patrol To = "patrol"
    • Right-Click To = "smart"
    • Set Rally-Point To = "setrally"
    • Unload All At = "unloadall"
    • Human Mortar Team - Flare = "flare"
    • Human Dragonhawk Rider - Cloud = "cloudoffog"
    • Human Archmage - Blizzard = "blizzard"
    • Human Firemage - Flamestrike = "flamestrike"
    • Orc Witch Doctor - Sentry Ward = "evileye"
    • Orc Witch Doctor - Stasis Trap = "stasistrap"
    • Orc Witch Doctor - Healing Ward = "healingward"
    • Orc Spirit Walker - Disenchant = "disenchant"
    • Orc Far Seer - Far Sight = "farsight"
    • Orc Far Seer - Earthquake = "earthquake"
    • Orc Shadow Hunter - Serpent Ward = "ward"
    • Orc Tauren Chieftain - Shockwave = "shockwave"
    • Night Elf Ancients - Root = "root"
    • Night Elf Wisp - Detonate = "detonate"
    • Night Elf Keeper of the Grove - Force of Nature = "forceofnature"
    • Night Elf Priestess of the Moon - Starfall = "obsolete"
    • Night Elf Warden - Blink = "blink"
    • Undead Destroy - Devour Magic = "devourmagic"
    • Undead Crypt Lord - Impale = "impale"
    • Undead Dread Lord - Carrion Swarm = "carrionswarm"
    • Undead Dread Lord - Inferno = "dreadlordinferno"
    • Undead Lich - Death and Decay = "deathanddecay"
    • Neutral - Breath of Frost = "breathoffrost"
    • Neutral - Monsoon = "monsoon"
    • Neutral - Kaboom! = "selfdestruct"
    • Neutral Beast Master - Stampede = "stampede"
    • Neutral Dark Ranger - Silence = "silence"
    • Neutral Naga Sea Witch - Tornado = "tornado"
    • Neutral Pandaren Brewmaster - Breath of Fire = "breathoffire"
    • Neutral Pit Lord - Rain of Fire = "rainoffire"
    • Neutral Alchemist - Healing Spray = "healingspray"
    • Neutral Tinker - Cluster Rockets = "clusterrockets"
    • Neutral Tinker - Pocket Factory = "summonfactory"
    • Neutral Fire Lord - Volcano = "volcano"
    • Special Archimonde - Dark Portal = "darkportal"
    • Special Archimonde - Rain of Chaos = "rainoffire"
    • Special Doom Guard - Rain of Fire = "rainoffire"
    • Special Warlock - Inferno = "inferno"
    • Special - Dark Summoning = "darksummoning"


    Soon to come:
    Unit target orders
    Destructible target orders
    Item target orders
    No-target orders
    Terrain Types
    Timed Lives

    Any suggestions for layout or other string orders are wanted. Please tell me if this is of any use to you guys :p
 

Ghan

Administrator - Servers are fun
Staff member
Reaction score
889
Suggestion: give the Integer counterparts if possible.
 

ReVolver

Mega Super Ultra Cool Member
Reaction score
609
Try adding (Item - Wand of Illusion) I believe it doesn't have an order string.
 

elmstfreddie

The Finglonger
Reaction score
203
Wand of Illusion - is that a unit target or a non-target?
If it's a non-target you probably just use the mirror image string, if it's unit target I unno :p

Suggestion: give the Integer counterparts if possible.
What integer counterparts >_>
When JASSing it asks for order string, or in lightning just a string, as far as I know there ARE no integers.
 

Ghan

Administrator - Servers are fun
Staff member
Reaction score
889
There are integer counterparts to commands. For example,

Smart = 851971
Attack = 851983
Move = 851986
Patrol = 851990
 

ReVolver

Mega Super Ultra Cool Member
Reaction score
609
Can't you just look in the object editor?

textev8.png
 

Doom-Angel

Jass User (Just started using NewGen)
Reaction score
167
u don't have to remove it's not a burden but what he says is there is no much point adding them cuz it's easy just check in the editor as simply checking for raw id of unit but if u already added then keep it also add terrain types
 

Evan1993

Ultra Cool Member
Reaction score
30
Try adding (Item - Wand of Illusion) I believe it doesn't have an order string.

Yep, you have to use its ID. (Which is 852274 btw.)

You might just as well ask when you would need this "list"...
Yeah. If I can’t find it in the object editor then I just add this trigger:

Code:
FixIT
    Events
        Unit - A unit Is issued an order targeting an object
        Unit - A unit Is issued an order targeting a point
        Unit - A unit Is issued an order with no target
    Conditions
    Actions
        Custom script:   call BJDebugMsg( I2S( GetIssuedOrderId() ) )

Then give a unit the ability and have him cast it. Still maybe some people will find it helpful.
 

Andrewgosu

The Silent Pandaren Helper
Reaction score
716
I find this thread better than checking into the Object Editor every time: waiting the brushes to load, finding the right ability->the right field.

Nice job. It serves it's purpose if one person finds it useful already. :D
 

elmstfreddie

The Finglonger
Reaction score
203
K thanks for the encouragement Andrew :D
I got the idea when I wanted to make lightning but I didn't know the string code for it =/

I'm thinking for lightning I will add pictures of what the lightning looks like next to the string.

I will continue working on this after dinner :D
 

Rheias

New Helper (I got over 2000 posts)
Reaction score
232
Thanks for running this elmstfreddie, good job.

May I suggest though, focusing in things which are not so easy to find out (say integers of orders etc.)?

Oh, don't forget to add timed life buffs, I can never remember those. :p
 

Rheias

New Helper (I got over 2000 posts)
Reaction score
232
> still need to know when you use integers for orders though

Certain functions takes order by integer while others by string, I'm not completely sure why is that.
 

PurgeandFire

zxcvmkgdfg
Reaction score
509
Good job, +REP!

This will come in handy, but the thread name isn't true.

"String"...

The expiration timers are integers.

[' # '] = Integer
[" Text "] = String

:D
 

elmstfreddie

The Finglonger
Reaction score
203
Yeah, I added the expiration timers because of a request :)
This is gonna turn into an Integer/String list, so I gotta edit original post to change title.
(I just came back to use this myself actually :p)
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Howdy
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +1
  • V-SNES V-SNES:
    Happy Friday!
    +1

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top