Jump to content

Sash system (CActorInstance/'SendSequence': identifier not found)


Recommended Posts

Hi metin2dev.

I try to put Sash system in to my client source, but when i try to compile, i recive trhis error:

PythonNetworkStreamPhaseGame.cpp(4523): error C3861: 'SendSequence': identifier not found

'AttachSash': is not a member of 'CActorInstance'
/gamelib/ActorInstance.h(24): note: see declaration of 'CActorInstance'

Link to comment
Share on other sites

  • Replies 4
  • Created
  • Last Reply

Top Posters In This Topic

vor 1 Stunde schrieb Mr.B':

Hi metin2dev.

I try to put Sash system in to my client source, but when i try to compile, i recive trhis error:

PythonNetworkStreamPhaseGame.cpp(4523): error C3861: 'SendSequence': identifier not found

'AttachSash': is not a member of 'CActorInstance'
/gamelib/ActorInstance.h(24): note: see declaration of 'CActorInstance'

AttachSash': is not a member of 'CActorInstance'
look into your Tutorial an check ActorInstance.h again. (AttachSash is missing)

Link to comment
Share on other sites

On 2/19/2018 at 8:49 PM, JeeX said:

AttachSash': is not a member of 'CActorInstance'
look into your Tutorial an check ActorInstance.h again. (AttachSash is missing)

U right i  fix-it, but i stil don't no how to fix:  error C3861: 'SendSequence': identifier not found

 I was searching on google, but nothing...

Srry for my bad eng.

Link to comment
Share on other sites

  • Premium

It's telling how to fix:

'AttachSash': is not a member of 'CActorInstance'

---

In
/gamelib/ActorInstance.h(24):

Need to have AttachSash

So what:

Find: void SetHair(DWORD eHair)  in /gamelib/ActorInstance.h

Put under:

#ifdef ENABLE_YOURSYSTEM
        void AttachSash(CItemData * pItemData, float fSpecular = 0.0f);
#endif

 

Regards ,

WeedHex

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.