Conversion Request
 

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

Conversion Request

Started by BBD, 26 June, 2005, 21:00:10

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

BBD

--Allow Nicks 1.02

--by Mutor The Ugly 9/18/04

--Denies login to users without nick prefix

--

--

--User Settings-------------------------------------------------------------------------------------

-- Set accepted prefixes here

prefix = {

"[MBR]",

"[SP]",

"[MOD]",

}

--End User Settings----------------------------------------------------------------------------------

function NewUserConnected(user)

	SetTimer(2000) 

	UserPrefix = 0

	for i=1, getn(prefix) do

			if (strsub(strlower(user.sName),1,strlen(prefix[i])) == strlower(prefix[i])) then

				UserPrefix = 1

				break

			end

	end

	if UserPrefix ~= 1 then

		local which = ""

		for i, v in prefix do

			which = which..v.." , "

		end

			user:SendData("\r\n\r\n\tThis hub requires a username prefix\r\n\tAcceptable pefixes are: "..which.."\r\n")

			StartTimer()	--Pause a moment before disconnect

			user:Disconnect()

			StopTimer()

			
	end

end



OpConnected = NewUserConnected -- Check Ops for prefix, comment to disable

Could anyone change to LUA5 please

Thanks in advance
Is God willing to prevent evil, but not able? Then he is not omnipotent. Is he able, but not willing? Then he is malevolent. Is he both able and willing? Then whence cometh evil? Is he neither able nor willing? Then why call him God?

Madman

for i=1, getn(prefix) do
Change that to this
for i=1, table.getn(prefix) do

And this
if (strsub(strlower(user.sName),1,strlen(prefix[i])) == strlower(prefix[i])) then
for this
if (string.sub(string.lower(user.sName),1,string.len(prefix[i])) == string.lower(prefix[i])) then
We suffer in silence, we lurk in the shadows, we kill in the night
Site currently down, ETA of returning online is 2099 ;p

BBD

Is God willing to prevent evil, but not able? Then he is not omnipotent. Is he able, but not willing? Then he is malevolent. Is he both able and willing? Then whence cometh evil? Is he neither able nor willing? Then why call him God?

Madman

We suffer in silence, we lurk in the shadows, we kill in the night
Site currently down, ETA of returning online is 2099 ;p

SMF spam blocked by CleanTalk