You last visited: Today at 23:39
Advertisement
Guilty FlyFF - Siege server !
Discussion on Guilty FlyFF - Siege server ! within the Flyff PServer Advertising forum part of the Flyff Private Server category.
07/03/2015, 23:26
#31
elite*gold: 294
Join Date: Jun 2009
Posts: 407
Received Thanks: 587
no ask pls
friend stats bug so much friend one char 457 other 432 and other 442 =\
07/04/2015, 10:50
#32
elite*gold: 332
Join Date: Jun 2011
Posts: 277
Received Thanks: 184
Oh come on, you really need Range to kill Kawaii? :3 It just shows once again that small children need attention.
07/04/2015, 13:10
#33
elite*gold: 26
Join Date: Sep 2013
Posts: 314
Received Thanks: 3
actually i download it and may patcher wont patch it only got 1 note and when i want to start, i got a note that this is a older version, but the link is up do date, what can i do?
07/04/2015, 13:27
#34
elite*gold: 57
Join Date: May 2015
Posts: 143
Received Thanks: 84
Quote:
Originally Posted by
NoK Heartless
actually i download it and may patcher wont patch it only got 1 note and when i want to start, i got a note that this is a older version, but the link is up do date, what can i do?
Look in your folder for a new patcher called NewFlyff and use this.
07/05/2015, 00:31
#35
elite*gold: 0
Join Date: Apr 2015
Posts: 368
Received Thanks: 98
not all methode are fixxed.
07/05/2015, 02:36
#36
elite*gold: 28
Join Date: Feb 2010
Posts: 463
Received Thanks: 277
Quote:
Originally Posted by
'Mope'
not all methode are fixxed.
You try today ? Because I have tried and I still can not.
07/06/2015, 21:28
#37
elite*gold: 57
Join Date: May 2015
Posts: 143
Received Thanks: 84
" So we can re-open in good terms bugsless, rangesless, no position bug, stathack ect.. !"
Biggest lie ever
You're server performance is so bad, that even i, with a 100mbits internet connection an 60 fps+ look like range at this server.
07/06/2015, 22:14
#38
elite*gold: 0
Join Date: May 2015
Posts: 150
Received Thanks: 133
Quote:
Originally Posted by
Sabe~
" So we can re-open in good terms bugsless, rangesless, no position bug, stathack ect.. !"
Biggest lie ever
You're server performance is so bad, that even i, with a 100mbits internet connection an 60 fps+ look like range at this server.
That's what i thought, but aparently it there's still bullshit.
(I am not the dev, the server is just my idea, and the other person does all the rest).
So do not insult me a liar, especially when you do not know me thx.
07/06/2015, 22:17
#39
elite*gold: 0
Join Date: Jul 2015
Posts: 50
Received Thanks: 38
perhaps its just a crappy host. for the rest the server seems alright, class ballence just gotta be modified a lil bit bp is abit to overpowered. and perhaps some special things to siege for appart from a model and you've got you're self a decent server.
dont blame copy right away. she's just a sieger like you and me. she just came with an idea , a server for us to siege at so we could have some funn. dont go qq mode right away.
07/07/2015, 00:01
#40
elite*gold: 195
Join Date: Mar 2012
Posts: 458
Received Thanks: 358
pls fix stat hack/range... -.-
07/07/2015, 21:38
#41
elite*gold: 0
Join Date: Jan 2011
Posts: 29
Received Thanks: 1
GG übel viele stat / range hacker.
macht laune da zu spielen
11/10
07/07/2015, 21:41
#42
elite*gold: 57
Join Date: May 2015
Posts: 143
Received Thanks: 84
Quote:
Originally Posted by
iLuckZ
GG übel viele stat / range hacker.
macht laune da zu spielen
11/10
ja musst schon richtig glück haben mal ein gw ohne stat hacker zu haben..
__________________________________________________ ____________
Random Outcasts from 6.07.2015 (watch in 1080p60fps for best quali)
07/07/2015, 21:57
#43
elite*gold: 0
Join Date: Aug 2009
Posts: 489
Received Thanks: 419
Quote:
Originally Posted by
Swat~
pls fix stat hack/range... -.-
If you want more players, then fix that.
07/07/2015, 22:27
#44
elite*gold: 0
Join Date: Apr 2015
Posts: 368
Received Thanks: 98
wich stat hack is it ?
small autoban fix
User.cpp
Code:
#ifdef __STAT_HACKFIX_RH
if( IsValidObj( this ) )
{
if( !IsAuthHigher( AUTH_GAMEMASTER ) )
{
if( ( ( m_nSta-15 ) + ( m_nInt -15 ) + ( m_nDex -15 ) + ( m_nStr - 15 ) ) > 400 )
{
g_dpDBClient.SendBan( m_playAccount.lpszAccount, 9999 );
FILEOUT( "Hack.txt", "UserID = %07d, UserName = %s [STA:%d, INT:%d, DEX:%d, STR:%d] stats stat points, login returned", m_idPlayer, GetName(), m_nSta, m_nInt, m_nDex, m_nStr );
g_UserMng.RemoveUser( m_dwSerial );
}
}
}
//Stats-Check recoded!
if( IsValidObj( this ) )
{
if( !IsAuthHigher( AUTH_GAMEMASTER ) )
{
if( this->GetSta() > 1850 || this->GetInt() > 1850 || this->GetDex() > 1850 || this->GetStr() > 1850 )
{
//g_dpDBClient.SendBan( m_playAccount.lpszAccount, 9999 );
FILEOUT( "Hacktemp.txt", "UserID = %07d, UserName = %s [STA:%d, INT:%d, DEX:%d, STR:%d] stats stat points, login returned", m_idPlayer, GetName(), m_nSta + GetParam( DST_STA, 0 ), m_nInt + GetParam( DST_INT, 0 ), m_nDex + GetParam( DST_DEX, 0 ), m_nStr + GetParam( DST_STR, 0 ));
g_UserMng.RemoveUser( m_dwSerial );
}
}
}
#endif
DPSrvr.cpp
Code:
#ifdef __STAT_FIXXED
if( nStrCount > pUser->m_nRemainGP || nStaCount > pUser->m_nRemainGP || nDexCount > pUser->m_nRemainGP || nIntCount > pUser->m_nRemainGP )
{
Error("CDPSrvr::OnModifyStatus() : User[%07d] Try to Stat Hack", pUser->m_idPlayer );
return;
}
#endif // __STAT_FIXXED
07/08/2015, 14:44
#45
elite*gold: 0
Join Date: Oct 2008
Posts: 274
Received Thanks: 18
server crash
All times are GMT +2. The time now is 23:40 .