Ope Rand
Alien
Join date: 14 Mar 2003
Posts: 352
|
03-28-2003 17:35
Wouldn't it be great if we could step through code bit by bit? Developing scripts would be so much easier.
plz plz plz
|
Dave Zeeman
Master Procrastinator
Join date: 28 Jan 2003
Posts: 1,025
|
03-29-2003 01:57
aahhh like C++ debugging eh? would be interesting, but in the meanwhile you can always try these lines of code... integer step = 0; touch_start(integer num) { step++; if(step == 1) { //First line of code here } if(step == 2) { //Second line of code here } //and so on and so forth } I mean, unless you have a wacky long code, this is about the only way I know of that'll do it good. Each time you touch the object it will call the next line of code into play. *shrug* I try 
_____________________
llToggleDaveZeemanIntelligence(FALSE); Philip Linden: Zeeman, strip off the suit! Dave Zeeman - Keeping Lindens on their toes since v0.3.2!
|
Cory Linden
Linden Lab Employee
Join date: 19 Nov 2002
Posts: 173
|
03-29-2003 16:07
The other option is to return to good old "printf debugging", ie, add llSay's after the lines of code that you are interested in.
Debugger is a wee bit more work, although we've definitely talked about it.
c
|