Cydh Posted April 13, 2013 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 748 Joined: 06/16/12 Last Seen: February 21 Share Posted April 13, 2013 (edited) We know after implementation of "Multilanguages Support" on r17251. It changes everything related msg_txt method. from msg_txt(number) becomes msg_txt(sd,number). If you found error on your src because you modify it, and you have too many modification that use msg_txt, don't worry to replace all of them using FIND -> manual REPLACE. I just want to remain you all, use RegEx. on Microsoft Visual Studio, use Find & Replace (CTRL+H) find: {msg_txt\(}{[0-9]+} replace with: \1sd,\2 for Notepad++ user (CTRL+H) find: (msg_txt\()([0-9]+) replace with: \1sd,\2 REPLACE ALL. if you doubt, you can try it one by one (find -> replace) If you're sure now, you can FIND IN FILES (for Notepad++) and point it to your src folder or LOOK IN: ENTIRE SOLUTION for Microsoft VIsual Studio. NOTE: If you not using sd, but pl_sd, ssd, ect. maybe you need check them out after compiling. Why after compiling? Because you will know where is the error and it makes you easy to find them. or you can use NULL If you not 100% sure with this way, just don't do it! I don't take responsibility of your src errors. Edited April 29, 2013 by Cydh 2 Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.