[Help] add the QuickJobChange In Source

Page 12 of 16 FirstFirst ... 245678910111213141516 LastLast
Results 166 to 180 of 235
  1. #166
    Apprentice DevClary is offline
    MemberRank
    Dec 2015 Join Date
    19Posts

    Re: [Help] add the QuickJobChange In Source

    I have followed everything, I get an error while compiling which is
    wndChangeJobEx.cpp
    'nApply': undeclared identifier.

    any ideas?

    - - - Updated - - -

    Fixed. Commented out the line.

  2. #167
    Member kloklojul is online now
    MemberRank
    Sep 2008 Join Date
    82Posts

    Re: [Help] add the QuickJobChange In Source

    I pasted everything from the tut, commented the nApply, compiled it but when i level from 14 to 15 there is no window, same goes for 59 -> 60. But when i use gm commands to become a 61 knight for example and change back to a tier 1 job level 60 it pops up and i can chose a job. Same goes for level 15. If i become a level 16 tier 1 job and convert back to a level 15 Vagrant the window pops up. Anyone knows how i can fix that ?

  3. #168
    Apprentice shearjovan is offline
    MemberRank
    Sep 2014 Join Date
    17Posts

    Re: [Help] add the QuickJobChange In Source

    can someone re up the file please. I can't download it

    - - - Updated - - -

    Hello, so I compiled the source and I eventually got this error

    https://ibb.co/kM495ZM

    what should I do from this point?

    Thank you!

    Edit: The first error is solved, I solved the second error by removing "nApply->EnableWindow( FALSE );", only the 3rd error remains
    Last edited by shearjovan; 08-12-19 at 08:53 PM.

  4. #169
    Apprentice shearjovan is offline
    MemberRank
    Sep 2014 Join Date
    17Posts

    Re: [Help] add the QuickJobChange In Source

    bump, still stuck in this error. I've checked the files that I copied multiple times and so far I copied it right

  5. #170
    ‎‎‎‎ Ketchup is offline
    ModeratorRank
    Jan 2009 Join Date
    New YorkLocation
    2,847Posts

    Re: [Help] add the QuickJobChange In Source

    Error is pretty self explanatory tbh, you need to make the code meet current compiler standards.

    Replace
    Code:
    OnUpdateJob
    With
    Code:
    &CDPSrver::OnUpdateJob
    Where the packet is called on DpSrvr.cpp
    Last edited by Ketchup; 10-12-19 at 02:21 AM.

  6. #171
    Apprentice shearjovan is offline
    MemberRank
    Sep 2014 Join Date
    17Posts

    Re: [Help] add the QuickJobChange In Source

    Quote Originally Posted by Ketchup View Post
    Error is pretty self explanatory tbh, you need to make the code meet current compiler standards.

    Replace
    Code:
    OnUpdateJob
    With
    Code:
    &CDPSrver::OnUpdateJob
    Where the packet is called on DpSrvr.cpp
    It succeeded in building. Thanks again, Ketchup! really need a mentor for this
    Last edited by shearjovan; 10-12-19 at 04:23 AM.

  7. #172
    Novice jatjatliit is offline
    MemberRank
    Mar 2020 Join Date
    4Posts

    Re: [Help] add the QuickJobChange In Source

    Can anyone help me with this error?

    Neuz error LNK2019: unresolved external symbol "public: __thiscall CWndJobChangeEx::CWndJobChangeEx(void)" (??0CWndJobChangeEx@@QAE@XZ) referenced in function "public: int __thiscall CMover::SetExperience(__int64,int)" (?SetExperience@CMover@@QAEH_JH@Z)Neuz fatal error LNK1120: 1 unresolved externals

  8. #173
    ‎‎‎‎ Ketchup is offline
    ModeratorRank
    Jan 2009 Join Date
    New YorkLocation
    2,847Posts

    Re: [Help] add the QuickJobChange In Source

    Quote Originally Posted by jatjatliit View Post
    Can anyone help me with this error?

    Neuz error LNK2019: unresolved external symbol "public: __thiscall CWndJobChangeEx::CWndJobChangeEx(void)" (??0CWndJobChangeEx@@QAE@XZ) referenced in function "public: int __thiscall CMover::SetExperience(__int64,int)" (?SetExperience@CMover@@QAEH_JH@Z)Neuz fatal error LNK1120: 1 unresolved externals
    Make sure you have applied ALL edits as your missing something.

  9. #174
    Novice jatjatliit is offline
    MemberRank
    Mar 2020 Join Date
    4Posts

    Re: [Help] add the QuickJobChange In Source

    Thanks for the response Ketchup,

    I made sure that I have applied all edits, I even tried to redo everything and I still can't find or fix the error.

  10. #175
    ‎‎‎‎ Ketchup is offline
    ModeratorRank
    Jan 2009 Join Date
    New YorkLocation
    2,847Posts

    Re: [Help] add the QuickJobChange In Source

    Quote Originally Posted by jatjatliit View Post
    Thanks for the response Ketchup,

    I made sure that I have applied all edits, I even tried to redo everything and I still can't find or fix the error.
    You have added WndChangeJobEx.cpp & WndChangeJobEx.h to your Neuz project?

  11. #176
    Novice jatjatliit is offline
    MemberRank
    Mar 2020 Join Date
    4Posts

    Re: [Help] add the QuickJobChange In Source

    Quote Originally Posted by Ketchup View Post
    You have added WndChangeJobEx.cpp & WndChangeJobEx.h to your Neuz project?
    Yes I did and that's where it's giving me the error.

  12. #177
    ‎‎‎‎ Ketchup is offline
    ModeratorRank
    Jan 2009 Join Date
    New YorkLocation
    2,847Posts

    Re: [Help] add the QuickJobChange In Source

    Quote Originally Posted by jatjatliit View Post
    Yes I did and that's where it's giving me the error.
    add:
    Code:
    #include "WndChangeJobEx.h"
    to Mover.cpp

  13. #178
    Novice jatjatliit is offline
    MemberRank
    Mar 2020 Join Date
    4Posts

    Re: [Help] add the QuickJobChange In Source

    That did the trick Ketchup! Thanks a lot! <3

  14. #179
    Enthusiast meliodasda is offline
    MemberRank
    Nov 2018 Join Date
    31Posts

    Re: [Help] add the QuickJobChange In Source

    when I turned level 15 it doesnt show up, nothing happens but when I compile the source theres no error. What should I do?

  15. #180
    ‎‎‎‎ Ketchup is offline
    ModeratorRank
    Jan 2009 Join Date
    New YorkLocation
    2,847Posts

    Re: [Help] add the QuickJobChange In Source

    Quote Originally Posted by meliodasda View Post
    when I turned level 15 it doesnt show up, nothing happens but when I compile the source theres no error. What should I do?
    Double check your edits as it sounds like your missing something.



Advertisement