!Beta testing! - Page 11
 

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

!Beta testing!

Started by ptaczek, 13 October, 2003, 10:32:34

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

MrZ

Hia:))

no ya is right sUiCiDeMAniC, but as plop say use delete or mark the nr ya wanna remove and just write in the new one.

Z ya
Always remember that you are unique... just like everyone else :-D

[ES]latinmusic

Backspace, hmm, this bug is old, i never reported this one because i thougth was reported before, seems not so i will add a feature request here:
The fields in rules and bots window: MinSlots, MaxSlots, Slot ratio, Max. hubs,  chat msg and private message, must accept only numbers, currently you can type whatever you want there including letters, spaces, signs or what ever. The field who only accept numbers on input currently is Share chk.

Optimus

QuoteBackspace, hmm, this bug is old

Well i think the reason will be found somewhere here!!

Ptokax sayd??

as I have lost latest sources after partition crash

[ES]latinmusic

Yeeep, you have rigth, but old for me means 'related' to the betas, not previouws official or unofficial releases. :P

Alexei

Still OP kicks a Master :S....
And backspaces are still not working ;(

sUiCiDeMAniC

i kno how to delete it, i was just bringing it to your atention

-mAnIc

Dax

hello, i have a medium hub and i want test the latest ptokax beta version....i Have send a e-mail to ptokacez but he don't answer me....
can you tell me Where and How i can take the latest ptokax beta version?






I'm sorry for my bad english
Admin of DAXHUB
daxhub.no-ip.com



Snoris

QuoteOriginally posted by Dax
hello, i have a medium hub and i want test the latest ptokax beta version....i Have send a e-mail to ptokacez but he don't answer me....
can you tell me Where and How i can take the latest ptokax beta version?






I'm sorry for my bad english

I think its a _LITTLE_ to late for that now =)
There is already several Beta testars...But hang in there and maybe The King contacts u =)

Alexei

Snoris is right kid...
But who knows... you might get lucky...
And take his advise -- STAY in here!
Give good suggestions, make urself needed :D


Good luck...
Hope to see you with us soon...

Dax

please send me an e-mail at dado3003@yahoo.it with the instruction to recive the ptokax beta test.

Thanks
Davide
Admin of DAXHUB
daxhub.no-ip.com




[DM]Tottes

#261
Well i know its late but im free for testing
Running a y-hub now with 1600 users on a celeron 1.4
Also have a p4 2.4 ghz to test a hub on.
Have used ptokax before but it was to unstable  :(
I realy like the ptokax and would like to test it again.
Another thing why i changed hubsoft was that as a BBB user i couldnt get in on the old ptokax board and see what was happening

[DM]Tottes

Typhoon

a bug ?

running Robocop 4.0a on PtokaX 0.3.3.0 15.11

when using a scriptet command the hub soft freeze and has to be forced to shutdown... the command is !showiplog ....

*also written in Robocop thread*


***Typhoon?



pHaTTy

There is a bug with the read("*a")

it crashes the hubsoftware

Read() is fine tho
Resistance is futile!

tezlo

#264
no it doesnt.. not even with a 10MB file
look elsewhere for an infinite loop or something

pHaTTy

No actually it does, i have tried with several files, including gekko and the same happens
Resistance is futile!

tezlo

#266
well i think the problem is somewhere else
i doubt pta has changed anything in the lua libs

can you paste a piece of code that crashes a hub ?

does this work for you ?
function Main()
	local f = openfile("../RegisteredUsers.dat", "r")
	local file = read(f, "*a") closefile(f)
end

pHaTTy

No that is fine, hmmm paste, its mainly big huge scripts.........................like Gekko etc..........hmmm i test with a smaller and try get it to lock out..........brrrrrrrrr my hub going down agen
Resistance is futile!

pHaTTy

try sumit more like

function Main()
readfrom("../motd.txt")
	while 1 do 
		line = read("*a") 
		if line == nil then break end
		SendToAll("Kos",line) 
		end 
	readfrom() 
end
Resistance is futile!

tezlo

#269
you only need to read("*a") once as it reads the whole file
line will never be nil.. so you never break out of the loop

pHaTTy

yep but even from a function is does the same, that in main was just so yu see about what is does, hmmmmmm ok i try find a better example bbs
Resistance is futile!

tezlo

it doesnt matter where it is

pHaTTy

ok take this for example

function DoLanHelp(user)
	readfrom("files/userlan/"..user.sName)
	file = read("*a")
	if strfind(file,"english") then 
		readfrom("files/sets/help/enghelp.txt") 
		WhileRead(user)
		readfrom()
	elseif strfind(file,"dutch") then 
		readfrom("files/sets/help/duthelp.txt") 
		WhileRead(user)
		readfrom()
	elseif strfind(file,"swedish") then 
		readfrom("files/sets/help/swehelp.txt") 
		WhileRead(user)
		readfrom()
	elseif strfind(file,"german") then 
		readfrom("files/sets/help/gerhelp.txt") 
		WhileRead(user)
		readfrom()
	elseif strfind(file,"french") then 
		readfrom("files/sets/help/frehelp.txt") 
		WhileRead(user)
		readfrom()
	elseif strfind(file,"italian") then 
		readfrom("files/sets/help/itahelp.txt") 
		WhileRead(user)
		readfrom()
	elseif strfind(file,"portuguese") then 
		readfrom("files/sets/help/porhelp.txt") 
		WhileRead(user)
		readfrom()
	else
		user:SendData(Kos, ""..UMust.." == "..mcmd.."set lan       ")
		SendToOps(Kos,user.sName..HimMust)
	readfrom()
	end
end
Resistance is futile!

tezlo

and WhileRead does another infinite loop ?

pHaTTy

WhileRead is fine it only reads the one line

function WhileRead(user)
	while 1 do 
		line = read() 
		if line == nil then break end 
		user:SendData(Kos,line) 
		end 
	readfrom() 
end
Resistance is futile!

SMF spam blocked by CleanTalk