hello mr [dev]twix, google is your friend, start using it not for just searching free posted tutorials/system to sell them but also to learn something
" char_item.cpp:4791: error: duplicate case valuechar_item.cpp:4526: error: previously used here "
this is pretty obvious, you have two times the same case or something like this "case a || b", also learn to read
" char_item.cpp:4926: error: 'item2' was not declared in this scope "
when you declare a value in an if statement, you can't use it outside of it
"char_item.cpp:5069: error: break statement not within loop or switch"
break must be inside of a loop (for,while, do while) or a switch statement, why make some effort and read the errors, when you can ask other people for help right?
" char_item.cpp:5071: error: case label 'ITEM_METIN' not within a switch statement "
a case outside a switch statement
char_item.cpp:5235: error: expected unqualified-id before 'return'
need to see the code for this, might be a syntax error
"char_item.cpp:5236: error: expected declaration before '}' token "
same