[Req] GuildMaster more than 1 Char

Submit your code requests, and if you are good at coding come help others with their requests.
Treax2
Loyal fan
Posts: 281
Joined: Fri Mar 04, 2005 5:05 pm
Location: Estonia
Contact:

Post by Treax2 »

OMG. why the fuck you guys use netmessage.h to do that ... now need to code that message part to client to ... isnt it easier whit wsprintf?

add to netmessage.h

#define DEF_NOTIFY_SUCCESSADDGM 0x0G2M3
and same thing to client source's netmessage.h

to client source

Game.cpp

in notifymsghandler add new case

Code: Select all

case DEF_NOTIFY_SUCCESSADDGM:
  AddEventList(NOTIFY_MSG_HANDLER75, 10);
  break;
in lang_eng.h

Code: Select all

#define	NOTIFY_MSG_HANDLER75	"New guildmaster aadded succesfully!"
Ace
Regular
Posts: 68
Joined: Sat Apr 03, 2004 5:14 am

Post by Ace »

e:\HelBreath Resources\HG Sources\EvolutionHG1.0\Game.cpp(36507) : error C2059: syntax error : 'bad suffix on number'
e:\HelBreath Resources\HG Sources\EvolutionHG1.0\Game.cpp(36507) : error C2146: syntax error : missing ')' before identifier 'G2M3'
e:\HelBreath Resources\HG Sources\EvolutionHG1.0\Game.cpp(36507) : error C2660: 'CGame::SendNotifyMsg' : function does not take 3 arguments
e:\HelBreath Resources\HG Sources\EvolutionHG1.0\Game.cpp(36507) : error C2059: syntax error : ')'
hex number problem?
Treax2
Loyal fan
Posts: 281
Joined: Fri Mar 04, 2005 5:05 pm
Location: Estonia
Contact:

Post by Treax2 »

change to 0x0BF2 then it works :)

Ace
Regular
Posts: 68
Joined: Sat Apr 03, 2004 5:14 am

Post by Ace »

yeah it works in HG but client already use by Angelic

Code: Select all

#define DEF_NOTIFY_ANGELIC_STATS    	0x0BF2
Game.cpp(25305) : error C2196: case value '3058' already used
Treax2
Loyal fan
Posts: 281
Joined: Fri Mar 04, 2005 5:05 pm
Location: Estonia
Contact:

Post by Treax2 »

ur a fucking moron ... user ur fucking brain and put that a newone

0x0BG0
0x0BH0

what else? think
tester
Outpost bitch
Posts: 544
Joined: Wed Jan 07, 2004 8:58 pm

Post by tester »

Treax2 wrote: ur a fucking moron ... user ur fucking brain and put that a newone

0x0BG0
0x0BH0

what else? think
0x0BG0 nor is 0x0BH0

Thats not a hex value :P

the 0x on start means its an hex value, 0 is only octal
so ur value is BG0 where G is not a valid hex char.

lemme show u

decimal 0 = hexadecimal 0
decimal 1 = hexadecimal 1
decimal 2 = hexadecimal 2
....
decimal 9 = hexadecimal 9
decimal 10 = hexadecimal A
decimal 11 = hexadecimal B
decimal 12 = hexadecimal C
decimal 13 = hexadecimal D
decimal 14 = hexadecimal E
decimal 15 = hexadecimal F
decimal 16 = hexadecimal 10 NOT G

becuz if u count back the hex to dec u do it this way

take the 0 from the hex and multiply it by 16^0
take the 1 from the hex and multiply it by 16^1

so 0 x 1 = 0
+ 1x16 = 16

0+16 = 16



ps ; imba tutorial I know :)

Cheers Tester
I support a woman's right to choose<br><br>- In the Mouth?<br>- In the Ass ?<br>- In the Vagina?<br>- Between the Tits?
Treax2
Loyal fan
Posts: 281
Joined: Fri Mar 04, 2005 5:05 pm
Location: Estonia
Contact:

Post by Treax2 »

oh i didnt know that :)
bone-you
Spamtastic
Posts: 1310
Joined: Wed Mar 16, 2005 3:12 am

Post by bone-you »

Treax2 wrote: oh i didnt know that :)
And you tell someone else they're a "fucking moron". lol.
<img src='http://www.helbreathx.net/sig/sig.jpeg' border='0' alt='user posted image' /><br><a href='http://mafia.cheats4us.org/index.php?x=231030' target='_blank'>#1 on Mafia :D</a><br><!--QuoteBegin-Slipknight+--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>QUOTE</b> (Slipknight)</td></tr><tr><td id='QUOTE'><!--QuoteEBegin-->100mb Internet, burstable too 10GB oc192<br>his speed can go up too 10gbs<br>...<br>Yes my car can have a top speed of 1000mph<!--QuoteEnd--></td></tr></table><div class='signature'><!--QuoteEEnd--><br>^^ I wonder where the retard went to.
ADDKiD
&lt;3 bd long time
Posts: 967
Joined: Tue Jul 12, 2005 8:07 pm
Location: Washington, USA
Contact:

Post by ADDKiD »

Lol... Least Zero didn't bash me in here yet. Thanks for this information, I was wondering about the hexing..
bone-you
Spamtastic
Posts: 1310
Joined: Wed Mar 16, 2005 3:12 am

Post by bone-you »

ADDKiD wrote: Lol... Least Zero didn't bash me in here yet. Thanks for this information, I was wondering about the hexing..
You're a fucking queer.





(you wanted me to)

For something constructive, just make up a hex value and search it in the netmessages.h. If nothing comes up, use it.
<img src='http://www.helbreathx.net/sig/sig.jpeg' border='0' alt='user posted image' /><br><a href='http://mafia.cheats4us.org/index.php?x=231030' target='_blank'>#1 on Mafia :D</a><br><!--QuoteBegin-Slipknight+--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>QUOTE</b> (Slipknight)</td></tr><tr><td id='QUOTE'><!--QuoteEBegin-->100mb Internet, burstable too 10GB oc192<br>his speed can go up too 10gbs<br>...<br>Yes my car can have a top speed of 1000mph<!--QuoteEnd--></td></tr></table><div class='signature'><!--QuoteEEnd--><br>^^ I wonder where the retard went to.
Ace
Regular
Posts: 68
Joined: Sat Apr 03, 2004 5:14 am

Post by Ace »

nvm i got it :) :D B)
ADDKiD
&lt;3 bd long time
Posts: 967
Joined: Tue Jul 12, 2005 8:07 pm
Location: Washington, USA
Contact:

Post by ADDKiD »

Lol... Hilarious! I still get a kick out of his retardness. By now, someone with his age and maturity, would've moved on, yet, How ironic it is, to see Zero, Still posting shit about me. Zero, act your age and grow up, quit being a fucking 2 yr old. I still have time, I can fuck around as much as I want.... So, why don't you grow up and act your age, which isn't it, like 19 or 20, something like that.
bone-you
Spamtastic
Posts: 1310
Joined: Wed Mar 16, 2005 3:12 am

Post by bone-you »

ADDKiD wrote: Lol... Hilarious! I still get a kick out of his retardness. By now, someone with his age and maturity, would've moved on, yet, How ironic it is, to see Zero, Still posting shit about me. Zero, act your age and grow up, quit being a fucking 2 yr old. I still have time, I can fuck around as much as I want.... So, why don't you grow up and act your age, which isn't it, like 19 or 20, something like that.
I'm 19 and in a better position now than you'll ever be.

You saw my client. That's only 3 days or so of work? And I've still had time to get out of the house. I could SO make this into a job right now but then I'd have little time for things like this which is what I really enjoy. I already have a side job coding that makes REAL cash. Not fast food like the place that rejected you.
<img src='http://www.helbreathx.net/sig/sig.jpeg' border='0' alt='user posted image' /><br><a href='http://mafia.cheats4us.org/index.php?x=231030' target='_blank'>#1 on Mafia :D</a><br><!--QuoteBegin-Slipknight+--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>QUOTE</b> (Slipknight)</td></tr><tr><td id='QUOTE'><!--QuoteEBegin-->100mb Internet, burstable too 10GB oc192<br>his speed can go up too 10gbs<br>...<br>Yes my car can have a top speed of 1000mph<!--QuoteEnd--></td></tr></table><div class='signature'><!--QuoteEEnd--><br>^^ I wonder where the retard went to.
Orkl
Loyal fan
Posts: 376
Joined: Sat Sep 17, 2005 2:31 pm

Post by Orkl »

coding is my job :D lol
<!--QuoteBegin-crazymnig88+--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>QUOTE</b> (crazymnig88)</td></tr><tr><td id='QUOTE'><!--QuoteEBegin-->by notepad??? it didn't show any code, just show words wif no mean<!--QuoteEnd--></td></tr></table><div class='signature'><!--QuoteEEnd--><br><!--QuoteBegin-charlie+--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>QUOTE</b> (charlie)</td></tr><tr><td id='QUOTE'><!--QuoteEBegin-->he'll probably save it as 600pagebook.bmp<br><br>400gb file plzkthnx<!--QuoteEnd--></td></tr></table><div class='signature'><!--QuoteEEnd-->
ADDKiD
&lt;3 bd long time
Posts: 967
Joined: Tue Jul 12, 2005 8:07 pm
Location: Washington, USA
Contact:

Post by ADDKiD »

I wasn't hired at McDonalds because I had a job offer from another Company. Btw, how much do you make altogether? For being 17, and Still in High School, I bet i max 2x as much as you do working where I work.
Post Reply