The Dink Network

Reply to Re: Strings in Dink

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
November 6th 2008, 06:47 PM
fairy.gif
Someone
Peasant He/Him Australia
 
It's not the length of the variable string that would be the problem, but the length of the written-in strings.

It would be possible to make a function so you can write this:

print(12,11,x,y,&string); //return x1 & x2
say_xy("stuff before",&x1,y); //12 char
say_xy("stuff after",&x2,y); //11 char

and it would all line up.

So, easy in the sense once you've got the function written up it's not hard to use, and relatively clean looking. Just have to count the characters.