Built in feature 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

Built in feature request

Started by ruler, 28 March, 2005, 11:10:57

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ruler

hope this is in the right section  :D

Is it posible at sometime in the future to have an option to block all downloads & searches to non reg users?
also an option where the hub will send a chosen MSG to non reg'd users in either PM or main chat or even both?
i know that this can be done via LUA scripting but more scripting = slower hub.
 
regards

The Direct Connect Global Banlist get protected.

jiten

If I hadn't red the last paragraph, I'd recommend u using the scripts posted in the Lua 5 Finished Section ;)

ruler


The Direct Connect Global Banlist get protected.

Herodes

Maybe we could get a default profile for the unregs. then it would be more uniform to assign an on/off switch (just like the permissions of a profile) for downloading & searching... ( like [ ] Can search & [ ] Can Download

ruler

good idea, maybe it might be easier to send a mass message to all unregistered users then  8)
just a thought  :D

The Direct Connect Global Banlist get protected.

Herodes

QuoteOriginally posted by ruler
good idea, maybe it might be easier to send a mass message to all unregistered users then  8)
just a thought  :D
it is dead easy now already...
--- use like SendToLvl(msg, lvl) or SendToLvl(from, msg, lvl)
function SendToLvl(...)
	local from,msg,lvl
	if table.getn(args) == 3 then
		from, msg, lvl = args[1],args[2],args[3]
	elseif table.getn(args) == 2 then
		msg,lvl = args[1], args[2]
	else	msg,lvl = args[1], -1
	end
	for i,user in frmHub:GetOnlineUsers() do
		if (user.iProfile == lvl) then
			if from then
				user:SendData( from, msg )
			else	user:SendData( msg )
			end
		end
	end
end

--- use like SendPmToLvl ( "botname", "msg", lvl )
function SendPmToLvl(from,msg,lvl)
	for i,user in frmHub:GetOnlineUsers() do
		if (user.iProfile == lvl) then
			user:SendPM( from, msg )
		end
	end
end

SMF spam blocked by CleanTalk