zFuNBoTz
 

News:

29 December 2022 - PtokaX 0.5.3.0 (20th anniversary edition) released...
11 April 2017 - PtokaX 0.5.2.2 released...
8 April 2015 Anti child and anti pedo pr0n scripts are not allowed anymore on this board!
28 September 2015 - PtokaX 0.5.2.1 for Windows 10 IoT released...
3 September 2015 - PtokaX 0.5.2.1 released...
16 August 2015 - PtokaX 0.5.2.0 released...
1 August 2015 - Crowdfunding for ADC protocol support in PtokaX ended. Clearly nobody want ADC support...
30 June 2015 - PtokaX 0.5.1.0 released...
30 April 2015 Crowdfunding for ADC protocol support in PtokaX
26 April 2015 New support hub!
20 February 2015 - PtokaX 0.5.0.3 released...
13 April 2014 - PtokaX 0.5.0.2 released...
23 March 2014 - PtokaX testing version 0.5.0.1 build 454 is available.
04 March 2014 - PtokaX.org sites were temporary down because of DDOS attacks and issues with hosting service provider.

Main Menu

zFuNBoTz

Started by [T-G-T]M@sto, 14 April, 2004, 07:39:37

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

[T-G-T]M@sto

I use the good old FunBOt by Jenzen and have a small question. How do i add the username in the txt files so the username automatic add's in the trigger ? (let me try explain)
I got a trigger called +morgen and it's get a txt fiels called morgen.txt in a folder. Not i want it to say The says goodmorning ?
Please help me  ?(
The Ghost Riders - tgr.dyndns.org - The Best Danish Hub

nErBoS

#1
Hi,

If i understand you want to write a name in a text well you can do from this wo ways..

test = "morgen.txt" 
appendto(test) --This will write in the last line of the file
write(user.sName.."\r\n") -- Should alway use \r\n to change line
writeto() -- Stop handling the file

Another way...

test = "morgen.txt"
tmp = "" -- The String were you will save all text and the new line 

	readfrom(test) -- Opens the file to read
	while 1 do -- A unstopbanle while you shold have a break in
		local line = read() --Reads a line
		if (line == nil) then -- Your stop condition
			tmp = tmp..user.sName.."\r\n"
			break
		else
			tmp = tmp..line.."r\n" -- Svaes a line to tmp
		end
	end
	readfrom() --Stop reading the file

	writeto(test) --Will write in the file and overwrite the old one
	write(tmp) -- Write the text you have saved in tmp
	writeto() -- Stop the write and the handling

Best regards, nErBoS
--## nErBoS Spot ##--

SMF spam blocked by CleanTalk