Load and save table(s)
 

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

Load and save table(s)

Started by Shurlock, 01 July, 2005, 18:11:48

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Shurlock

Hi all!

Seems I need some help saving and loading a table.
The table within code below works just fine, but I need to have the table saved at exit and loaded at scriptrestart.

I'd be very gratefull to get it working!!

-- PASSIVE.LUA
-- Keeps the number of Passive users limited to 

Passive = { "Non-Registered Passive Users" }
MaxPassive = 100

function NewUserConnected(curUser)
	if strfind(curUser.sMyInfoString, "M:P") then 
		if getn(Passive) > MaxPassive then
			curUser:SendData("\r\n\r\n\t*** Sorry, but we do not allow more than "..MaxPassive.." PASSIVE users in the hub.\r\n\t*** Please try again later.\r\n")
			curUser:Disconnect()
			return 1
		else
			tinsert(Passive, curUser.sName)
			-- Report the Passive Users  (debug function)
			for index=1,getn(Passive) do
				SendToAll("\r\n\tArray["..index.."]\t"..Passive[index])
			end
		end
	end
end

(Script is to be used in LUA4)
If it's raining and your roof leaks, fix the roof. DON'T try to stop the rain!!

SMF spam blocked by CleanTalk