weird cifers on the left of my eoserv
ey guys i downloaded madao's rev and everything works fine but there are only cifers popping up on the left side of my eoserv.exe here is a pic.... http://i30.tinypic.com/14j6ywn.png
edit:: sordie what other language am i speaking? [edit by Sordie] cifers/numbers.
---
Live and let live. Hurt but do not kill. Finish what you start. NEVER GIVE UP!!!
14 years, 41 weeks ago
|
Ananas
Moderator
Joined: 22nd Apr 2009
Posts: 2190
Re: weird cifers on the left of my eoserv
Thats a C++ cout function. its in spell.cpp.
Search for;
ESF_Data *spell = this->server->world->esf->Get(spellid);
Below there it says something with cout << spellid or something.
Remove that.
---
"Pineapples and shit."
14 years, 41 weeks ago
|
AustinB

Joined: 9th Jul 2010
Posts: 1400
Re: weird cifers on the left of my eoserv
See i don't know if its that, becuase the numbers come up everytime a player attacks. the numbers are the direction the player is attacking.
Idk. i havn't tested this.
---
Create your own destiny, don't let someone else do it for you.
14 years, 41 weeks ago
|
Ananas
Moderator
Joined: 22nd Apr 2009
Posts: 2190
Re: weird cifers on the left of my eoserv
I checked that source myself and I noticed it, Once deleting it, it didn't gave the 0's anymore.
---
"Pineapples and shit."
14 years, 41 weeks ago
|
Re: weird cifers on the left of my eoserv
i tried what ananas said but it didnt help it is about attacking and the numbers 0,1,2,3 are the directions ---
Live and let live. Hurt but do not kill. Finish what you start. NEVER GIVE UP!!!
14 years, 41 weeks ago
|
epicnoob

Joined: 19th Feb 2010
Posts: 166
Re: weird cifers on the left of my eoserv
Its prolly in attack.cpp cuz ive seen that count << thing that ananas said
Edit: its under this in attack.cpp
if (direction != this->player->character->direction)
{
if (direction >= 0 && direction <= 3)
{
this->player->character->map->Face(this->player->character, direction);
CLIENT_FORCE_QUEUE_ACTION(0.67)
}
else
{
return false;
}
}
---
Fate-Gaming/Forgotten Memories Owner.
14 years, 41 weeks ago
|
Ananas
Moderator
Joined: 22nd Apr 2009
Posts: 2190
Re: weird cifers on the left of my eoserv
Ok listen up. Go to spell.cpp delete this cout << spell->type << endl; and the 0's are gone. Its on line 130. YES IT WORKS :/
---
"Pineapples and shit."
14 years, 41 weeks ago
|
epicnoob

Joined: 19th Feb 2010
Posts: 166
Re: weird cifers on the left of my eoserv
Its in attack.cpp i just tested it right now and it took the 0s away
EDIT: Ananas is right to thats to take away the 0s when u use spells but mine takes away the 0s when u attack
---
Fate-Gaming/Forgotten Memories Owner.
14 years, 41 weeks ago
|
Ananas
Moderator
Joined: 22nd Apr 2009
Posts: 2190
Re: weird cifers on the left of my eoserv
Do you even know what you're talking about? Do you even know what this guy is talking about? Everytime he uses a spell a 0 pops up. What does that have to do with attack.cpp? As I said before I checked this source once deleting that cout line the 0's were gone.
---
"Pineapples and shit."
14 years, 41 weeks ago
|
epicnoob

Joined: 19th Feb 2010
Posts: 166
Re: weird cifers on the left of my eoserv
Yea he was talking about the attacking to if u didnt read it, He asked about the 0,1,2,3s so what i posted should help him. ---
Fate-Gaming/Forgotten Memories Owner.
14 years, 41 weeks ago
|
kenobi13

Joined: 3rd Jun 2009
Posts: 881
Re: weird cifers on the left of my eoserv
I've just downloaded that pack and I've checked it. Both of you are right. There's a cout in spell.cpp, but it's in attack.cpp too.
And note for everyone: Stop making separate topics about someone's codes. Post in topic in what was that code released.
14 years, 41 weeks ago
|
Re: weird cifers on the left of my eoserv
thanks Ananas and Epicnoob as kenobi13 said you wer both right all the cifers are gone. ---
Live and let live. Hurt but do not kill. Finish what you start. NEVER GIVE UP!!!
14 years, 41 weeks ago
| | | | | | | | | | | | |