Posts: 3,324
Threads: 96
Joined: Sep 2013
Quote:
Originally Posted by Kar
Tried.. sadly it's not working
pawn Код:
sscanf(funcargs, "p<,>e<s[32]iis[32]iixxi>", matTextParseData); printf(" DEBUG: [eventLoadMap] Object Text: '%s', %d, %d, '%s', %d, %d, %x, %x, %d", matTextParseData[tmpObjText], matTextParseData[tmpObjIdx], matTextParseData[tmpObjMatSize], matTextParseData[tmpObjFont], matTextParseData[tmpObjFontSize], matTextParseData[tmpObjBold], matTextParseData[tmpObjFontCol], matTextParseData[tmpObjBackCol], matTextParseData[tmpObjAlign]);
|
I noticed I forgot to capitalize the p, I was coming to tell you but you noticed obviously. Anyways, it will not work with the quotes for the reason you stated above, have you tried without the quote escape? In this case it would in fact be lowercase too. With this the strings will contain the quote characters so trim the ends off of the strings before using them. I edited your code in the quote.