Author Topic: Destiny RPG Client = stuffting on RTB  (Read 2755 times)

Destiny's RPG Client mess's with RTB appariently by breaking the server control button.So if you have it delit it and if you don't have it I'd suggest to not download it.I guess Ephialitis found out that the client breaks the button.
« Last Edit: October 08, 2010, 08:50:46 PM by Jorge06 »

Destiny's RPG Client mess's with RTB appariently by breaking the server control button.So if you have it delite it and if you don't have it I'd suggest to not download it.I guess Ephialitis found out that the client breaks the button.
Make it happy?



Jesus Disapproves of your Spelling Mistakes.


Jesus Disapproves of your Spelling Mistakes.
Jesus is also an alt.

Of God.

Jesus is also an alt.

Of God.

Actually, I'm not an Alt : I just know how to get a few Epic Name snipes.

Surprisingly, No-one had taken this, and I joined yesterday. o_0
But to comfort you all, I try to live up my name,

I didn't notice your name being Jesus XD


I didn't notice your name being Jesus XD
Nor did I until I read your comment... :O

Destiny's RPG Client messes with RTB apparently by breaking the server control button. So if you have it delete it and if you don't have it I'd suggest to not download it. I guess EphialitisEPHIALTES...how did you spell that wrong :O found out that the client breaks the button.

Actually, I'm not an Alt : I just know how to get a few Epic Name snipes.

Surprisingly, No-one had taken this, and I joined yesterday. o_0
But to comfort you all, I try to live up my name,
I hate people like you that think their "too cool" for other people,plus with that name your sure to be flamed.

I hate people like you that think their "too cool" for other people,plus with that name your sure to be flamed.
Actually, jesus is a remarkably composed chap, much moreso than yourself.

It's 'they're' and 'you're', by the way.

I hate people like you that think their "too cool" for other people,plus with that name your sure to be flamed.
What.

I wouldn't exactly call RTB the epitome of mods, either, though. It's a wonderful system, but packs so much code into each file that I wonder if it would hurt to split the larger files and then add subdirectories. Also, it uses quite a few rather generic function names for support functions.

Oh, and looking at the copy of each, the bug would be that although both alter GameConnection::setConnectArgs(), RTB passes 6 arguments and the version of DRPG that I have (a few days old) only uses 5.

To fix it yourself, if you know how to edit an add-on, and if I correctly identified the bug, replace
Code: [Select]

function GameConnection::setConnectArgs(%a,%b,%c,%d,%e)
{
Parent::setConnectArgs(%a,%b,%c,%d,%e,$RTB::Version @ "\tDRPG\t" @ $DRPG::Client::Version);
}

with

Code: [Select]
function GameConnection::setConnectArgs(%a,%b,%c,%d,%e,%f)
{
Parent::setConnectArgs(%a,%b,%c,%d,%e,%f,$RTB::Version @ "\tDRPG\t" @ $DRPG::Client::Version);
}

Edit: The issue is only in version 0.10, fixed in 0.11. If you have an old version, simply upgrading will fix it.
« Last Edit: October 10, 2010, 12:30:12 AM by Uristqwerty »