View Single Post
  #22  
Old 16-11-2007, 00:06
DeadDrunk DeadDrunk is offline
Junior Member
 
Join Date: Aug 2004
Location: FingTX
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
DeadDrunk is on a distinguished road
bleep,

Do you lock any of the variables? ie the stock/etc? I edit the memory addresses myself and have noticed that at random times the memory address changes. I'm pretty sure your doing it by pointer, but as a programmer, changing the memory location will screw up bad sometimes. In fact thats a sign of a memory leak, since you lose all reference to the next/previous memory positions. Hell I've had my game crash because my stockhouse all of a sudden went crazy and I had like millions of items in it. It took a while to crash with the 8 gigs of ram, but it finally told me to... well i'll let you imagine. So if you changed another value and it's still trying to change the previous value, i could see bad stuff.

Anyways, was just a quick question/idea about locking values/changing memory addresses.
Reply With Quote