[src]check def command

All Helbreath Server Source Discussion here.
Post Reply
sokol
Loyal fan
Posts: 228
Joined: Mon May 02, 2005 7:28 pm
Location: P(r)oland

Post by sokol »

there u are just put in your commands in game.cpp

Code: Select all

if( memcmp( cp, "/checkdefence", 9 ) == 0 )
	{
  int dr = m_pClientList[ iClientH ]->m_iDefenseRatio + m_pClientList[ iClientH ]->m_iAddDR;
  int pahead = m_pClientList[ iClientH ]->m_iDamageAbsorption_Armor[ DEF_EQUIPPOS_HEAD ];
  int pabody = m_pClientList[ iClientH ]->m_iDamageAbsorption_Armor[ DEF_EQUIPPOS_BODY ];
  int papants = m_pClientList[ iClientH ]->m_iDamageAbsorption_Armor[ DEF_EQUIPPOS_PANTS ];
  int paarms = m_pClientList[ iClientH ]->m_iDamageAbsorption_Armor[ DEF_EQUIPPOS_ARMS ];
  int mr = m_pClientList[ iClientH ]->m_iAddResistMagic[ ABS_MAGIC ] + m_pClientList[ iClientH ]->m_cSkillMastery[ 3 ];
  int ma = m_pClientList[ iClientH ]->m_iAddAbsMD[ ABS_MAGIC ];
  wsprintf( G_cTxt, "DR=%d, PA[HEAD]=%d, PA[BODY]=%d, PA[PANTS]=%d, PA[ARMS]=%d, MR=%d, MA=%d", dr, pahead, pabody, papants, paarms, mr, ma );
  SendNotifyMsg( NULL, iClientH, DEF_NOTIFY_NOTICEMSG, 0, 0, 0, G_cTxt );
  return;
	}
Namesis
Regular
Posts: 88
Joined: Fri Mar 03, 2006 12:53 pm

Post by Namesis »

it gives me 3 errors..:

C:\Documents and Settings\PC\Desktop\Helbreath Cosas\HG Paulo y Viral\HGServer Source\Game.cpp(9345) : error C2065: 'ABS_MAGIC' : undeclared identifier

C:\Documents and Settings\PC\Desktop\Helbreath Cosas\HG Paulo y Viral\HGServer Source\Game.cpp(9345) : error C2109: subscript requires array or pointer type

C:\Documents and Settings\PC\Desktop\Helbreath Cosas\HG Paulo y Viral\HGServer Source\Game.cpp(9346) : error C2109: subscript requires array or pointer type

how to fix? :S
BlueChristmas
Loyal fan
Posts: 216
Joined: Wed Apr 19, 2006 12:19 am

Post by BlueChristmas »

Namesis wrote: it gives me 3 errors..:

C:\Documents and Settings\PC\Desktop\Helbreath Cosas\HG Paulo y Viral\HGServer Source\Game.cpp(9345) : error C2065: 'ABS_MAGIC' : undeclared identifier

C:\Documents and Settings\PC\Desktop\Helbreath Cosas\HG Paulo y Viral\HGServer Source\Game.cpp(9345) : error C2109: subscript requires array or pointer type

C:\Documents and Settings\PC\Desktop\Helbreath Cosas\HG Paulo y Viral\HGServer Source\Game.cpp(9346) : error C2109: subscript requires array or pointer type

how to fix? :S
fix is simple, learn c++
<img src='http://img114.imageshack.us/img114/8618 ... 2dy3lx.jpg' border='0' alt='user posted image' />
Namesis
Regular
Posts: 88
Joined: Fri Mar 03, 2006 12:53 pm

Post by Namesis »

come on help me and other ppl that would like it =P
Blizaga
Regular
Posts: 68
Joined: Sat Jul 08, 2006 7:39 pm

Post by Blizaga »

<span style='color:green'>I'm not expert at C++, but when I get some error like</span>

Code: Select all

  : error C: 'X' : undeclared identifier
<span style='color:green'>I solve it declaring the 'X' on the header from the file you are modificating.
In this case you should go to Game.h and copy the void that contains 'ABS_MAGIC'.

Also the undeclared identifier error appears when you don't declare 'X' below the void.

That is all I can do for you.
I would explain better but it's 3:30AM here.</span>
<a href='http://imageshack.us' target='_blank'><img src='http://img224.imageshack.us/img224/2738/screenqu8.jpg' border='0' alt='user posted image' /></a><br>drajwer draw<br><a href='index.php?showtopic=7299' target='_blank'>index.php?showtopic=7299</a>
Tafka12
&lt;3 bd long time
Posts: 772
Joined: Wed Dec 28, 2005 6:32 pm

Post by Tafka12 »

You should firstly give us codes without errors.
<img src='http://www.hot.ee/carvanho/taavi.png' border='0' alt='user posted image' /><br><br><img src='http://www.hot.ee/carvanho/Elvine.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/LieroX.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/Football.png' border='0' alt='user posted image' />
JustBrowsing
just visiting
Posts: 6
Joined: Thu Apr 06, 2006 7:10 pm

Post by JustBrowsing »

People should first be able to code in C++

Only then expect free code giveouts.

Im all for a private forum with requirements to have to submit at least a useful piece of code.
BlueChristmas
Loyal fan
Posts: 216
Joined: Wed Apr 19, 2006 12:19 am

Post by BlueChristmas »

JustBrowsing wrote: People should first be able to code in C++

Only then expect free code giveouts.

Im all for a private forum with requirements to have to submit at least a useful piece of code.
i think that would split the community up too much but thats just my say.

p.s. i just got c++ back so i can start coding again.
<img src='http://img114.imageshack.us/img114/8618 ... 2dy3lx.jpg' border='0' alt='user posted image' />
Namesis
Regular
Posts: 88
Joined: Fri Mar 03, 2006 12:53 pm

Post by Namesis »

i have that command fixed... easy fix.. i have that and /showdmg.. =D
BlueChristmas
Loyal fan
Posts: 216
Joined: Wed Apr 19, 2006 12:19 am

Post by BlueChristmas »

Namesis wrote: i have that command fixed... easy fix.. i have that and /showdmg.. =D
yeah thanks to me
<img src='http://img114.imageshack.us/img114/8618 ... 2dy3lx.jpg' border='0' alt='user posted image' />
juggalo2
Spamtastic
Posts: 1144
Joined: Sun Jul 17, 2005 5:28 pm

Post by juggalo2 »

Tafka12 wrote: You should firstly give us codes without errors.
lol u should firstly stfu :P this is to stop noobs from maken servers :P. why u thinsk alot of codes are busg or dont work right cuz its just basic. they nee fixing soem tierm soem tiem they dont but to many server up
<img src='http://lifeplaysu420.com/unknow/nightsign.png' border='0' alt='user posted image' /><br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br>Wanna make money for surfing the net sing up at <br><a href='http://www.cashfiesta.com/php/join.php? ... yprivitera' target='_blank'>cash fiesta</a><br>its all free hey why ntot make money while fucking around on the computer<br><br><br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
xmukox
Member
Posts: 175
Joined: Sun Sep 11, 2005 9:53 am

Post by xmukox »

Namesis wrote: lol :rolleyes:
lol what's ''lol'' in that topic? nice flood F:
Tafka12
&lt;3 bd long time
Posts: 772
Joined: Wed Dec 28, 2005 6:32 pm

Post by Tafka12 »

juggalo2 wrote:
Tafka12 wrote: You should firstly give us codes without errors.
lol u should firstly stfu :P this is to stop noobs from maken servers :P. why u thinsk alot of codes are busg or dont work right cuz its just basic. they nee fixing soem tierm soem tiem they dont but to many server up
Why to give codes anyway if there are too many servers?
Why not to just PM to someone that wants.
If there are errors then it would be easier to fix them and then post.

It was hes decision to submit the code here.
<img src='http://www.hot.ee/carvanho/taavi.png' border='0' alt='user posted image' /><br><br><img src='http://www.hot.ee/carvanho/Elvine.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/LieroX.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/Football.png' border='0' alt='user posted image' />
Post Reply