Yeah i want the new Robocop
 

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

Yeah i want the new Robocop

Started by Quattro, 26 February, 2005, 16:28:23

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Quattro

gehehe wanted first post in here ;-)
quattro-place.no-ip.com:1418
PtokaX DC Hub 0.3.3.0 build 17.09 Not Running :(
wdp10.no-ip.info:1412
DCH++ v1.0-Release (Plugin API v1.0) Special Quattro? Build
For DCH scripting and plugins


Tw?sT?d-d?v

LMAO     .......    I want it to :))

Daywalker

gehehe.....it's like a little child waiting for an icecream.  :P
Get in the night....Walk out the day :evil:

my hubs:
****v^^v**UNITED OP\'s**v^^v****
operators-lounge.servebeer.com:412
******************************
wdp9.no-ip.info:511
nl-dc-hub-2.no-ip.org

imby

QuoteOriginally posted by Daywalker
gehehe.....it's like a little child waiting for an icecream.  :P

Perfect analogy  :P

Event_Horizon

aren't we all childs in this way  ;)
Greez ????_H???z??
??????????????????

??/v\\ \'?\' ?@?? ???? is Secured by RoboCop? Created by Optimus?

Quattro

quattro-place.no-ip.com:1418
PtokaX DC Hub 0.3.3.0 build 17.09 Not Running :(
wdp10.no-ip.info:1412
DCH++ v1.0-Release (Plugin API v1.0) Special Quattro? Build
For DCH scripting and plugins

Bobby1999

I would like Seculite in lua 5

Psycho_Chihuahua

QuoteOriginally posted by Bobby1999
I would like Seculite in lua 5

same goes for me, spent all off yesterday trying to convert it but i'm hopeless at it -.-
with each error i fix i end up with 3 more
PtokaxWiki ?PtokaX Mirror + latest Libs

01100001011011000111001101101111001000000110101101101110011011110111011101101110001000000110000101110011001000000101010001101111011010110110111101101100011011110111001101101000

Skynet

if i rember that script right some bits of it you would
need a plugin ptokaX's not got LuaSockets i may be wrong about script ,but if it the one i think it it will

Skynet
landofkaraoke

Copyright SkynetSystems 2000-2005 @Phoenix Network

Jelf

#10
Why not try this...

--// --// a peerguardian script ..
--// by Typhoon?/Ratcom_Typhoon?
--// 09-05-2004 
--// idea and code from NXS-4 by NightLitch
--// converted to Lua5 by Jelf

---- setup

GuardianCheck = 1
check = 1

---- setup end

BotName = frmHub:GetHubBotName()

GuardianFile = "Guard/Guarding.P2P"

Guard = {}
----------------------------
function Main()

       LoadTable(Guard,GuardianFile)   
end
----------------------------
function NewUserConnected(curUser)

	if GuardianCheck==1 then
		local check,comp = BlockGuard(curUser.sIP)
		if check==1 then
			curUser:Disconnect()
			SendPmToOps(BotName,"*** "..curUser.sName.." - ( "..curUser.sIP.." ) from Company ( "..comp.." ) tried to login! ***")
		check = 0
		end
	end
end
------------------------------
function BlockGuard(ip)

	local _,_,a,b,c,d = string.find(ip, "(%d*).(%d*).(%d*).(%d*)")
	if ( tonumber(a) and tonumber(b) and tonumber(c) and tonumber(d) ) then
		local uip = ComputeIP(ip)
		if uip then
			for range,comp in Guard do
				local _,_,r1,r2 = string.find(range, "(.*)-(.*)")
				r1 = ComputeIP(r1)
				r2 = ComputeIP(r2)
				if uip>=r1 and uip<=r2 then
					return 1,comp
				end
			end
		end
	end
end
---------------------------------
function ComputeIP(curIP)

	local _,_,a,b,c,d = string.find(curIP, "(%d+).(%d+).(%d+).(%d+)")
	return a*16777216 + b*65536 + c*256 + d
end
---------------------------------
function LoadTable(table,file)

	local handle = io.open(file, "r")
	if (handle) then
    		local line = handle:read()
    		while line do
			s,e,ind,val = string.find( line, "(.*):(.*)")
			table[val]=ind
			line = handle:read()
    		end
  		handle:close()
	end
end
Just need to place guarding.p2p file (from peerguardian) into folder named "Guard".

Bobby1999

Cheers will try it when new Robo is out :)

Skynet

Good one jelf number one m8

Copyright SkynetSystems 2000-2005 @Phoenix Network

SMF spam blocked by CleanTalk