Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > 4Story
You last visited: Today at 15:18

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Sitzbug on source

Discussion on Sitzbug on source within the 4Story forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jun 2015
Posts: 23
Received Thanks: 3
Red face Sitzbug on source

Hey guys, i try on my local server to delete the sitzbug (i delete) but when i do it the touch ''B'' not exist anymore.
Somes peoples can tell me how to make like eden/official etc ?
Thanks for your feedbacks
Tonio10 is offline  
Old 06/28/2015, 10:29   #2
 
elite*gold: 0
Join Date: Apr 2015
Posts: 41
Received Thanks: 21
Quote:
Originally Posted by Tonio10 View Post
Hey guys, i try on my local server to delete the sitzbug (i delete) but when i do it the touch ''B'' not exist anymore.
Somes peoples can tell me how to make like eden/official etc ?
Thanks for your feedbacks
Replace this (TClientGame.cpp)
PHP Code:
case TKEY_MODE                :
        if( 
m_pSESSION &&
            !
m_pMainChar->IsDead() && !m_pMainChar->IsDown() && !m_pMainChar->IsFall() && 
            !
m_pMainChar->IsJump() && !m_pMainChar->m_bPrivateShop && !m_pMainChar->GetRidingPet() )
        {
            if( 
m_pMainChar->m_bMode == MT_BATTLE )
            {
                
LoopSkillOFF();
                
m_pSESSION->SendCS_CHGMODE_REQ(MT_NORMAL);
            }

            
BYTE bActionID;
            if( 
m_pMainChar->m_bAction == TA_SITDOWN )
                
bActionID TA_STAND;
            else
                
bActionID TA_SIT;

            
TACTION vActionID m_pMainChar->FindActionID(
                    
bActionID,
                    
m_pMainChar->GetWeaponID(m_pMainChar->m_bMode));

            
SendCS_ACTION_REQ(
                
m_pMainChar->m_dwID,
                
m_pMainChar->m_bType,
                
bActionID,
                
vActionID.m_dwActID,
                
vActionID.m_dwAniID,
                
m_pMainWnd->m_bChannel,
                
m_vMAP.m_wMapID0);
        }

        break; 
With new code
PHP Code:
case TKEY_MODE                :
        if( 
m_pSESSION &&
            !
m_pMainChar->IsDead() && !m_pMainChar->IsDown() && !m_pMainChar->IsFall() && 
            !
m_pMainChar->IsJump() && !m_pMainChar->m_bPrivateShop && !m_pMainChar->GetRidingPet() )
        {
            if( 
m_pMainChar->m_bMode == MT_BATTLE )
            {
                
LoopSkillOFF();
                
m_pSESSION->SendCS_CHGMODE_REQ(MT_NORMAL);
            }

            
BYTE bActionID;
            if( 
m_pMainChar->m_bAction == TA_SITDOWN )
            {
                
//m_vKEY.ResetSTATE();
                
m_pMainChar->SetTAction(TA_STAND);
                
StopMoveMainChar();
                
//m_bAutoRun = FALSE;
                
bActionID TA_STAND;
            }
            else
            {
                
//m_vKEY.ResetSTATE();
                
m_pMainChar->SetTAction(TA_STAND);
                
//m_bAutoRun = FALSE;
                
StopMoveMainChar();
                
bActionID TA_SIT;
            }

            
TACTION vActionID m_pMainChar->FindActionID(
                    
bActionID,
                    
m_pMainChar->GetWeaponID(m_pMainChar->m_bMode));

            
SendCS_ACTION_REQ(
                
m_pMainChar->m_dwID,
                
m_pMainChar->m_bType,
                
bActionID,
                
vActionID.m_dwActID,
                
vActionID.m_dwAniID,
                
m_pMainWnd->m_bChannel,
                
m_vMAP.m_wMapID0);
        }

        break; 
Canadaman12 is offline  
Old 06/28/2015, 17:39   #3
 
elite*gold: 0
Join Date: Jun 2015
Posts: 23
Received Thanks: 3
Red face

Quote:
Originally Posted by Canadaman12 View Post
Replace this (TClientGame.cpp)
PHP Code:
case TKEY_MODE                :
        if( 
m_pSESSION &&
            !
m_pMainChar->IsDead() && !m_pMainChar->IsDown() && !m_pMainChar->IsFall() && 
            !
m_pMainChar->IsJump() && !m_pMainChar->m_bPrivateShop && !m_pMainChar->GetRidingPet() )
        {
            if( 
m_pMainChar->m_bMode == MT_BATTLE )
            {
                
LoopSkillOFF();
                
m_pSESSION->SendCS_CHGMODE_REQ(MT_NORMAL);
            }

            
BYTE bActionID;
            if( 
m_pMainChar->m_bAction == TA_SITDOWN )
                
bActionID TA_STAND;
            else
                
bActionID TA_SIT;

            
TACTION vActionID m_pMainChar->FindActionID(
                    
bActionID,
                    
m_pMainChar->GetWeaponID(m_pMainChar->m_bMode));

            
SendCS_ACTION_REQ(
                
m_pMainChar->m_dwID,
                
m_pMainChar->m_bType,
                
bActionID,
                
vActionID.m_dwActID,
                
vActionID.m_dwAniID,
                
m_pMainWnd->m_bChannel,
                
m_vMAP.m_wMapID0);
        }

        break; 
With new code
PHP Code:
case TKEY_MODE                :
        if( 
m_pSESSION &&
            !
m_pMainChar->IsDead() && !m_pMainChar->IsDown() && !m_pMainChar->IsFall() && 
            !
m_pMainChar->IsJump() && !m_pMainChar->m_bPrivateShop && !m_pMainChar->GetRidingPet() )
        {
            if( 
m_pMainChar->m_bMode == MT_BATTLE )
            {
                
LoopSkillOFF();
                
m_pSESSION->SendCS_CHGMODE_REQ(MT_NORMAL);
            }

            
BYTE bActionID;
            if( 
m_pMainChar->m_bAction == TA_SITDOWN )
            {
                
//m_vKEY.ResetSTATE();
                
m_pMainChar->SetTAction(TA_STAND);
                
StopMoveMainChar();
                
//m_bAutoRun = FALSE;
                
bActionID TA_STAND;
            }
            else
            {
                
//m_vKEY.ResetSTATE();
                
m_pMainChar->SetTAction(TA_STAND);
                
//m_bAutoRun = FALSE;
                
StopMoveMainChar();
                
bActionID TA_SIT;
            }

            
TACTION vActionID m_pMainChar->FindActionID(
                    
bActionID,
                    
m_pMainChar->GetWeaponID(m_pMainChar->m_bMode));

            
SendCS_ACTION_REQ(
                
m_pMainChar->m_dwID,
                
m_pMainChar->m_bType,
                
bActionID,
                
vActionID.m_dwActID,
                
vActionID.m_dwAniID,
                
m_pMainWnd->m_bChannel,
                
m_vMAP.m_wMapID0);
        }

        break; 

Thanks you bro! its allright
Btw, are you good in source? ^^ if yes we can talk a bit please :s? (in private)
Thx btw.
Tonio10 is offline  
Old 06/28/2015, 18:26   #4
 
elite*gold: 1
Join Date: Jun 2015
Posts: 58
Received Thanks: 68
Thats from Odins source
Almighty' is offline  
Reply


Similar Threads Similar Threads
[Request] Ineed an easy Source for latest client or any small source
01/27/2015 - CO2 Private Server - 0 Replies
deleted post by user
[S] Mani/source Admin installierer + Mod [Counter strike Source] [B] 170eg
08/31/2012 - elite*gold Trading - 3 Replies
Yo. Ich brauche jemanden der mir Mani oder Source Admin Plugin auf mein Css server installiert, und dazu noch ein Mod. Am besten alles über Teamviewer. biete 170eg.
[WTS] Steam ACC - Counter Strike Source, Day of Defeat: Source und Half-Life 2: Death
12/12/2010 - Counter-Strike Trading - 1 Replies
Delete.
[Release]How To Make Tq Source Work + Working Source + Server ByBass + Commands
12/08/2008 - CO2 PServer Guides & Releases - 15 Replies
1: How To Make The Server Work In fact, before other people did not just let ACC now with hi EACC Columbia landing on the settlement of the issue, and the rest is our own how to improve the content of those interested can improve the next. MY MY set and the same. INI MAP INI files and MAP with the client-to-date coverage of the account. server.dat ! And then as long as the client will be able to modify server.dat! 127.0.0.1 192.168.0.1 192.168.1.1 IP。 Please do generally use...



All times are GMT +1. The time now is 15:19.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.