Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by TheElusiveYak

  1. TheElusiveYak

    Copy protection for .exe files

    A simple copy protection program is relativly easy to write. First you need to lock off certain features of a program (I personally perfer a boolean tag) that will only be available when the key is purchased. Then you need to set up two fields for the user to enter for registration the...
  2. TheElusiveYak

    TSR, Reading Ascii Chars from Screen, Keyboard Buffers

    I am trying to write a Rog-O-Matic type program. What it basically does is run in the background and reads charecters from the screen and outputs information into the keyboard buffer that will move the charecter in the game. Unfortunatly I know almost nothing about A) Writing Terminat Stay...
  3. TheElusiveYak

    Unwanted Program Termination

    these are all global, they are defined in a unit however, but they are only used in that unit
  4. TheElusiveYak

    Unwanted Program Termination

    I just double checked all the pointer references and those are all fine, so im thinking that they are too large for the heap. These are the structures im using, tile = array[1..256] of byte; tileset = array[0..60] of tile; palette = record r, g, b : byte; end; paltile = array[1..256] of...
  5. TheElusiveYak

    Unwanted Program Termination

    Hey guys, me again..... Im now writing a tile based game, and it is spanned across several units. After a while it got to the point where it said that the program's data segment was to large. So i converted some of the larger variable structures into pointers and from there things compiled...
  6. TheElusiveYak

    Simple Compression Frustrations.....

    Actualy I just solved the problem, but thank you for your time. You don't know how much I appreciate it.
  7. TheElusiveYak

    Simple Compression Frustrations.....

    Im sorry, freewebs was down for a bit and i couldn't upload it.... its there now
  8. TheElusiveYak

    Simple Compression Frustrations.....

    Alrighty this is a long one..... I wrote a program that converts a file into a text file with the charecters 'A'-'P' as the only data in them. this works fine, but unfourtunately the resulting filesize is double the original, so im writing a series of compression procedures to reduce this...
  9. TheElusiveYak

    Encryption

    I am doing research on encryption, can you point me in the right direction to websites where i can find detailed descriptions of already existing algorithms?
  10. TheElusiveYak

    Catching Runtime Errors

    if u are useing 7.0 the fsearch function is useful so a function like this would work, needs the dos unit uses dos; function fileexist(filename : string):boolean; var s : pathstr; begin s := fsearch(filename,getenv('PATH')); if s = '' then fileexist := false else fileexist :=...
  11. TheElusiveYak

    Multiple Simultanious Operations

    Hello Again, I am now working on a sprite driven RPG. I am trying to figure out how to get all the npc's to move independently of the charicter but how do i coordinate it so that when the user enters a command to move it immediatly replies even though all the NPC's are still moving. Is there...
  12. TheElusiveYak

    LongInt To Bianary and V.V. conversion

    Hello Again, I'm working on a file encryption program which utilizes Wolfram's Cellular Automina in order to generate seemingly random alterations in the encoding... well anyhow I want to have the user enter a Longint key and convert it to a 16 cell boolean array. I've tried to figure out how...
  13. TheElusiveYak

    Displaying Variable's In GRAPH & variable conversion

    Well thanx guys. Now everything is working great. You were a real help.
  14. TheElusiveYak

    Displaying Variable's In GRAPH & variable conversion

    What Unit Does is that in? I'm using tp 7 and I cant find it.

Part and Inventory Search

Back
Top