[ut2kx] error info to line numbers???

  • Two Factor Authentication is now available on BeyondUnreal Forums. To configure it, visit your Profile and look for the "Two Step Verification" option on the left side. We can send codes via email (may be slower) or you can set up any TOTP Authenticator app on your phone (Authy, Google Authenticator, etc) to deliver codes. It is highly recommended that you configure this to keep your account safe.

CodePig

New Member
Apr 22, 2003
124
0
0
hi-

Code:
Warning: TC_Hud MT-TestMapG.TC_Hud (Function ModTestA.TC_Hud.DrawPlayerInfo:0281) Accessed None

is there enough information available for 'modders' to transform '0281' into a line number in the source file? ie. by processing the .u, etc

thanks,
codepig
 

TaoPaiPai

Commisaire Van Loc
Jun 13, 2000
1,626
0
0
Matnik
Visit site
IT gives the name of the function,which is generally enough to find the error (unless it's a HUGE function).
But I don't think there's a way to find the line number from that number.
 

elmuerte

Master of Science
Jan 25, 2000
1,936
0
36
42
the Netherlands
elmuerte.com
the number is the offset in the byte code, there's no way to convert it into a line number (because of comment and code optimization)

the only way they could give you line number is when they where stored for each operation (thats a bit too much overhead).