davidviral 0 Report post Posted October 27, 2021 18 hours ago, Ximboliex said: You can upload file? if I will take some time to prepare the file Quote Share this post Link to post Share on other sites
wolfenx 110 Report post Posted October 27, 2021 still do not solve this since 2020? I remember that one person said it was easy, which is true but people don't work on it they just wait for them to release it keep waiting then Quote Adios Me Retiro de la Comunidad Share this post Link to post Share on other sites
davidviral 0 Report post Posted October 28, 2021 5 hours ago, wolfenx said: still do not solve this since 2020? I remember that one person said it was easy, which is true but people don't work on it they just wait for them to release it keep waiting then that's life it's good to help from time to time ... Quote Share this post Link to post Share on other sites
davidviral 0 Report post Posted October 28, 2021 On 10/26/2021 at 5:22 PM, Ximboliex said: You can upload file? https://mega.nz/file/MZc1BKoZ#ggvtJoNSnesasj3lySKl4uxJhUWRnAaVsZ2Ez5bh_8Y Quote Share this post Link to post Share on other sites
Ximboliex 91 Report post Posted October 29, 2021 (edited) On 10/22/2021 at 3:37 PM, wouter2004 said: Fixed the mount animation in the client, swings still dont work To get animated mounts update the following the the Character.ccp void CCharacter::FrameMove(DWORD dwTimeParam) { CSceneNode::FrameMove(dwTimeParam); if( !_isArrive ) { if( _IsMoveTimeType ) { static float dis; static D3DXVECTOR2 vTmp; dis = (float)( CGameApp::GetCurTick() - _dwStartTime ) * _fMoveSpeed; if( dis>_fMoveLen ) { setPos( (int)_vMoveEnd.x, (int)_vMoveEnd.y ); ++ if(pMount) ++ pMount->CCharacterModel::PlayPose(POSE_WAITING, PLAY_LOOP_SMOOTH, -1, 30, 1); // wouter _isArrive = true; } else { ++ if(pMount) ++ pMount->CCharacterModel::PlayPose(POSE_RUN, PLAY_LOOP_SMOOTH, -1, 30, 1); // wouter vTmp = _vMoveStart + _vMoveDir * dis; setPos( (int)vTmp.x, (int)vTmp.y ); } } else if( GetChaState()->IsTrue(enumChaStateMove) ) { // ????????ProgressRate(??????j???????)------------------------------------------------------------------------------ if( _nTurnCnt>1 ) _fStepProgressRate = _fStepProgressRate + _fStep * CWaitMoveState::GetMoveRate() / (float)_nTurnCnt; else _fStepProgressRate = _fStepProgressRate + _fStep * CWaitMoveState::GetMoveRate(); _CalPos(_fStepProgressRate); if(_fStepProgressRate >= 1.0f) { ++ if(pMount) ++ pMount->CCharacterModel::PlayPose(POSE_WAITING, PLAY_LOOP_SMOOTH, -1, 30, 1); // wouter _isArrive = true; } else if( _isStopMove ) { ++ if(pMount) ++ pMount->CCharacterModel::PlayPose(POSE_WAITING, PLAY_LOOP_SMOOTH, -1, 30, 1); // wouter _isArrive = true; } else { ++ if(pMount) ++ pMount->CCharacterModel::PlayPose(POSE_RUN, PLAY_LOOP_SMOOTH, -1, 30, 1); // wouter } } } HI, have this error where are the symbols for ++ C:\01 New Project\source\Client\Client\src\Character.cpp(452): error C2059: syntax error : 'if' C:\01 New Project\source\Client\Client\src\Character.cpp(460): error C2059: syntax error : 'if' C:\01 New Project\source\Client\Client\src\Character.cpp(478): error C2059: syntax error : 'if' C:\01 New Project\source\Client\Client\src\Character.cpp(485): error C2059: syntax error : 'if' C:\01 New Project\source\Client\Client\src\Character.cpp(492): error C2059: syntax error : 'if' Edited October 29, 2021 by Ximboliex Quote Share this post Link to post Share on other sites
wouter2004 12 Report post Posted November 1, 2021 On 10/29/2021 at 5:27 PM, Ximboliex said: HI, have this error where are the symbols for ++ C:\01 New Project\source\Client\Client\src\Character.cpp(452): error C2059: syntax error : 'if' C:\01 New Project\source\Client\Client\src\Character.cpp(460): error C2059: syntax error : 'if' C:\01 New Project\source\Client\Client\src\Character.cpp(478): error C2059: syntax error : 'if' C:\01 New Project\source\Client\Client\src\Character.cpp(485): error C2059: syntax error : 'if' C:\01 New Project\source\Client\Client\src\Character.cpp(492): error C2059: syntax error : 'if' No you can remove the ++ it just indicates which lines should be added 1 Quote Share this post Link to post Share on other sites
Ximboliex 91 Report post Posted November 1, 2021 7 hours ago, wouter2004 said: No you can remove the ++ it just indicates which lines should be added Ok, thanks Quote Share this post Link to post Share on other sites
Rinor 59 Report post Posted November 26, 2021 On 10/22/2021 at 10:37 PM, wouter2004 said: Fixed the mount animation in the client, swings still dont work To get animated mounts update the following the the Character.ccp void CCharacter::FrameMove(DWORD dwTimeParam) { CSceneNode::FrameMove(dwTimeParam); if( !_isArrive ) { if( _IsMoveTimeType ) { static float dis; static D3DXVECTOR2 vTmp; dis = (float)( CGameApp::GetCurTick() - _dwStartTime ) * _fMoveSpeed; if( dis>_fMoveLen ) { setPos( (int)_vMoveEnd.x, (int)_vMoveEnd.y ); ++ if(pMount) ++ pMount->CCharacterModel::PlayPose(POSE_WAITING, PLAY_LOOP_SMOOTH, -1, 30, 1); // wouter _isArrive = true; } else { ++ if(pMount) ++ pMount->CCharacterModel::PlayPose(POSE_RUN, PLAY_LOOP_SMOOTH, -1, 30, 1); // wouter vTmp = _vMoveStart + _vMoveDir * dis; setPos( (int)vTmp.x, (int)vTmp.y ); } } else if( GetChaState()->IsTrue(enumChaStateMove) ) { // ????????ProgressRate(??????j???????)------------------------------------------------------------------------------ if( _nTurnCnt>1 ) _fStepProgressRate = _fStepProgressRate + _fStep * CWaitMoveState::GetMoveRate() / (float)_nTurnCnt; else _fStepProgressRate = _fStepProgressRate + _fStep * CWaitMoveState::GetMoveRate(); _CalPos(_fStepProgressRate); if(_fStepProgressRate >= 1.0f) { ++ if(pMount) ++ pMount->CCharacterModel::PlayPose(POSE_WAITING, PLAY_LOOP_SMOOTH, -1, 30, 1); // wouter _isArrive = true; } else if( _isStopMove ) { ++ if(pMount) ++ pMount->CCharacterModel::PlayPose(POSE_WAITING, PLAY_LOOP_SMOOTH, -1, 30, 1); // wouter _isArrive = true; } else { ++ if(pMount) ++ pMount->CCharacterModel::PlayPose(POSE_RUN, PLAY_LOOP_SMOOTH, -1, 30, 1); // wouter } } } Hi, have you fixed it for other classes? And you managed to disable mount name when hovering the mouse into it? Quote Share this post Link to post Share on other sites
Rinor 59 Report post Posted December 21, 2021 Up. Quote Share this post Link to post Share on other sites
Rinor 59 Report post Posted January 3, 2022 Is any fixed version available? Quote Share this post Link to post Share on other sites
Mario 12 Report post Posted June 14, 2022 @Rinor no Quote Share this post Link to post Share on other sites
StaffEN 5 Report post Posted December 28, 2023 any update here? Quote Share this post Link to post Share on other sites
wolfenx 110 Report post Posted December 28, 2023 On 27/10/2021 at 13:16, davidviral said: si me tomaré algo de tiempo para preparar el archivo It's been almost 3 years and people are still waiting lol. You could at least learn c++, I remember working on these files and I gave a solution in _computeLinkedMatrix pd: I laugh at all those who say they are programmers and only buy solutions cof cof mkhzaleh pathetic Quote Adios Me Retiro de la Comunidad Share this post Link to post Share on other sites
mkhzaleh 137 Report post Posted December 29, 2023 11 hours ago, wolfenx said: It's been almost 3 years and people are still waiting lol. You could at least learn c++, I remember working on these files and I gave a solution in _computeLinkedMatrix pd: I laugh at all those who say they are programmers and only buy solutions cof cof mkhzaleh pathetic try to not mention my name little kid beside i have saw "your solution in one of people files as u sold them around 300$?" which totally broke code and people still asking to get correct fix of that lol "first stop using my codes then we talk for next situation " p.s i don't sell fixes for this" as i'm the owner of correct code which comes fully fixed lol Quote Share this post Link to post Share on other sites
wolfenx 110 Report post Posted December 29, 2023 what you say I don't care and I have no complaints, the only person I sold to him is a very well-known server and if it was bad they would have already refunded him lol Quote Adios Me Retiro de la Comunidad Share this post Link to post Share on other sites
mkhzaleh 137 Report post Posted December 29, 2023 then little kid stop mentioning members names in your p.s respect the other people , say your suggest/help or stay silent as good puppy , if you won't help them , "do not act as pro shit front of new people" blaming them how they couldn't learn c++ yet bla bla, as no one care of your opinion either? and most and important stop using my codes as you're so pro to do your own maybe? Quote Share this post Link to post Share on other sites
wolfenx 110 Report post Posted December 29, 2023 haha your codes? lol you can't be more pathetic, do you work in moli? Quote Adios Me Retiro de la Comunidad Share this post Link to post Share on other sites
mkhzaleh 137 Report post Posted December 29, 2023 (edited) 12 minutes ago, wolfenx said: haha your codes? lol you can't be more pathetic, do you work in moli? well i heard you're stupid but didn't expect to be zero IQ as moli closed their game in 2015 and stopped doign something new to it , but the more pathetic person here is you as you're" selling "fake fix to people using my mount code"? then call people lame names "as how they couldn't learn c++ "like you" since 3 years? more pathetic person as u still opening topics of 4 years old and making lame drama like you, so watch your place little kid, stay in your bugged tool that never had one single work of it , Edited December 29, 2023 by mkhzaleh Quote Share this post Link to post Share on other sites
wolfenx 110 Report post Posted December 29, 2023 hahaha who said that I sell the frame code. Just because they offer you money doesn't mean that I sell, does it mean that I have to spend my time fixing stupid things or that you don't remember that you came to me for help? Could you show me where I said I was selling? I don't have the need to sell? Quote Adios Me Retiro de la Comunidad Share this post Link to post Share on other sites
mkhzaleh 137 Report post Posted December 29, 2023 2 minutes ago, wolfenx said: hahaha who said that I sell the frame code. Just because they offer you money doesn't mean that I sell, does it mean that I have to spend my time fixing stupid things or that you don't remember that you came to me for help? Could you show me where I said I was selling? I don't have the need to sell? came for your help , ye so much that's why i have u blocked everywhere lol , stop mention my name in this forum and anywhere, its so easy right? now step back and go to your business 1 Quote Share this post Link to post Share on other sites
wolfenx 110 Report post Posted December 29, 2023 You haven't responded. If you don't want to admit, just shut up and don't respond again. Quote Adios Me Retiro de la Comunidad Share this post Link to post Share on other sites
mkhzaleh 137 Report post Posted December 29, 2023 Just now, wolfenx said: You haven't responded. If you don't want to admit, just shut up and don't respond again. learn to speak first little puppy , then stop ur shit in forum , Quote Share this post Link to post Share on other sites
wolfenx 110 Report post Posted December 29, 2023 (edited) hahaha I see that you have already diverted the topic you have not responded talk to me through discord to recover the chat and show you how you came to me asking for help please hahaha could you repair my defective system which I can't hahahahaha PS: I don't speak your fucking language, I speak Spanish. Edited December 29, 2023 by wolfenx Quote Adios Me Retiro de la Comunidad Share this post Link to post Share on other sites
wolfenx 110 Report post Posted December 29, 2023 hahaha I think I left him quiet, rookie guf guf guf grrrrrrr Quote Adios Me Retiro de la Comunidad Share this post Link to post Share on other sites
mkhzaleh 137 Report post Posted December 29, 2023 (edited) 11 minutes ago, wolfenx said: hahaha I see that you have already diverted the topic you have not responded talk to me through discord to recover the chat and show you how you came to me asking for help please hahaha could you repair my defective system which I can't hahahahaha PS: I don't speak your fucking language, I speak Spanish. that's from your deep dream right? as you had broken system ? so you're so stupid at that too? i was working in mounts like 5 years ago and crossed little issue, and u were claiming that u had it fixed" which "minimain" tried to talk with you not me? then u had nothing fixed at all? beside that u were stupid to base contact conversation so i have blocked you to work on my version alone and you still claiming that u "fix them bla bla" people begging you? spamming thread from 4 years? so stupid for real "none of us is english " so u still stupid no matter Edited December 29, 2023 by mkhzaleh Quote Share this post Link to post Share on other sites