What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Begin to code for the community:)

flexkres

New Member
Joined
Apr 6, 2010
Messages
459
Reaction score
6
--- WARNING --- Lame introduction incomming!!

Hello, im a 19y old lad who has it very easy to learn things, "extremly due to adhd, plz dont flame xDD"
And i am VERY VERY curious about what coding languages one should learn for HB2 :)

Im intrested in learning the coding language for plugins and cc?s :)
Is it all C# or what languages is it:) Sorry if there is a thread about this btw:P
 
I'd like to learn C# as well. Can anyone recommend a good beginners book?
 
Btw im just guessing here but the C# interacts and implements its procedures through asm ?
 
You need asm to execute some WoW functions like DoString(), when you are not injecting your own DLLs. HB2 is using fasm_managed.dll to do that (google Shynd's blog) as far as I know it.
 
Last edited:
You don't need ASM at all if you just want to code for HB.
 
I doubt you will be able to code things (bigger things like a new plugin or cc) completely by yourself before HB shuts down, would require alot of time and dedication.
 
I doubt you will be able to code things (bigger things like a new plugin or cc) completely by yourself before HB shuts down, would require alot of time and dedication.

Say what??
 
I doubt you will be able to code things (bigger things like a new plugin or cc) completely by yourself before HB shuts down, would require alot of time and dedication.
Uh... no. That's far from true (personal experience ;)). Toke me 2 months to learn it enough to work on PPather and first thing I ever did was writing a CC (I started by that), so everyone can start by actually MAKING a plugin or CC.
 
I doubt you will be able to code things (bigger things like a new plugin or cc) completely by yourself before HB shuts down, would require alot of time and dedication.

Plenty of people do already lol aint shut down yet
 
can some one give us a link, so we can learn how to make a c# ? it would be nice to learn how to do stuff like that.
 
I doubt you will be able to code things (bigger things like a new plugin or cc) completely by yourself before HB shuts down, would require alot of time and dedication.

i dont think hb is shutting down anytime soon tho...?
 
can some one give us a link, so we can learn how to make a c# ? it would be nice to learn how to do stuff like that.

start downloading as many CC?s u can find and reading :)

As for an "easy" example if the number of mobs are more then 1 it will use the following buffs, try finding simple ones you understand then you can start reading up on the other parts like what "bool" means and stuff, after a while u will understand most of the cc coding and then you can start figuring out why it is assembled as it is:P sounds confusing but thats often how i learn stuff:P

if (combatChecks)
{
addsList = getAdds(); //getAdds(); gets the "number:P" from the addsList

if (addsList.Count > 1) // Due to the if on top this is a "requirement" so if its more then one then it will continiue with next buffs
{
KillingSpree();
BladeFlurry();
AdrenalineRush();
}
}
else //if the number of adds would have returned as 1 or lower it would continiue down and not have cast those buffs
{
return; //return to normal i guess xD
}



Hope i wasnt too confusing:P sortof started learning this today xD
 
Last edited:
the most use command when coding if,then, else . I remember when coding in school about 15 yrs ago. that make me fell so old now :(
 
you all should know.. that you just cant start programing a CC fast... you have to spend ALOT of time doing it..
 
Back
Top