......
Printable View
Stole stolen files...yeh...whatever. :laugh:
Thieves pointing fingers at other thieves lmao.
Maybe people wouldnt have to steal if certain other people shared the creamy goodness of 144..not that im condoning any form of thievery.
Its not like any of us wrote these files up from scratch..can anyone here lay claim to the creation of any of these files?
The programs to alter them is different however and not to be confused.
Abig fat WHATEVER man DILLIGAF.
Most of my likes have gone to you guys the "devs".
I praise anyone who can solve a problem and offers help...which lately "good" help on the 144 has been in short supply because of attitudes like "You dont deserve them" or because of other excuses...promises made but nothing forthcoming. Mentioning here thank you Souris for your release xD and the tools are coming along nicely.
From a peasant point of view being a "commoner" ..i didnt care that Robin Hood stole from the haves and gave to the have-nots...in-fact i was happy to receive something...anything..indeed, irrespective of the "how" it occurred. When i get something from someone i dont EVER ask the morality of it lol..like all DL's we never ask but are happy to receive.
So much politics and redtape already..
After struggling on that problem for several hours the advice was like a breath of fresh air..if you had offered this advice then you would have received this "praise" idc about the stupid politics.
argonaut ignore who is not worthy of respect
and continuing with the previous issues
you still are having problems starting your server?
I'm uploading the solution
ok ok ty:)
You did not just say that. I swear I must be reading something wrong as there is no way some little fucktard just said what I think they said.
What have you done, other then get insanely mother fucking lucky in finding some 1.4.4 files and insulting to high hell everyone who has been a major resource for this community? What have you done to deserve any praise at all? What have you done to be worthy of respect? What makes you think you are better than anyone who has been here much longer then you?
Where do you get off on the idea that you have the right to say that myself or anyone else here is not worthy of respect. Have you spent over 2 years here on RaGEZone helping countless people get 1.3.6 working flawlessly? Do you have complete understanding of 1.4.4? Hell I know I don't, no one can say they do.
Your utter disrespect for the people that have been here forever disgusts me. Oh boy do I wish I knew exactly where you were so I could cause you such pain and suffering for acting like you do.
ADMZePekeno , do you know why addcubi is not sync to mysql??
I used Server from SEModer...
"In the file /etc/table.xml /home/mauthd/etc/table.xml /home/mauthd/build/table.xml/home/mauthd/build/conf/table.xml change in the graph password "pass" on your The password for the MySQL"
ive done this.
Also in phpmyadmin the uid exists for character created.
Also checked all paths known.
The server from command line shows no errors and runs smoothly.
Client shows a connection and ping of 5ms.
Yet when i try to log it says "incorrect username and password"
Yes unfortunately im still struggling.
Couldnt answer before as was at doctors sorry for long delay.
When i log in the server shows this
"TRACE : gdelivery::matrixpasswd query, user=argonaut
GQueryPasswd:account is argonaut , login ip is 150.***.***.***
TRACE : matrixpasswd NOT usbbind user 32
"
Is this telling me that the password is not being retrieved to username?
(used * to hide my ip)
/gdeliveryd/1.txt shows this as configuration, is this correct? (i never changed these from original)
[LogclientClient]
type = udp
port = 11100
address = 10.12.9.254
so_sndbuf = 16384
so_rcvbuf = 16384
ibuffermax = 16384
obuffermax = 1048576
accumulate = 1048576
The address has me worried..other than that it says gdeliverd so im poking around in there.
LOL! You have totally lost your mind - perspective check, you're writing addon code to a game some other group entirely wrote, not curing cancer. In a few years no-one at all will remember your name, except as a search they'll come across it - and man if they see this post all they'll think is "wow, what the hell was that guys problem".
You're AWESOME!
After fiddling about i think ive made things perhaps worse or ive brought to surface real problem
TRACE : gdelivery::matrixpasswd query, user=test
GQueryPasswd:account is test , login ip is 150.***.***.***
Bad Base64 input character at 0: 5(decimal)
java.lang.NullPointerException
at org.mono.Base64.decode(Base64.java:776)
at org.mono.StorageEx.asBytes(StorageEx.java:871)
at org.mono.StorageEx.acquireIdPasswd(StorageEx.java:338)
at protocol.MatrixPasswd.Server(MatrixPasswd.java:65)
at com.goldhuman.IO.Protocol.Rpc.Process(Unknown Source)
at com.goldhuman.IO.Protocol.Task.run(Unknown Source)
at com.goldhuman.Common.ThreadPool.run(Unknown Source)
at java.lang.Thread.run(Thread.java:679)
TRACE : matrixpasswd NOT usbbind user 0
it seems java is my problem but im not sure how to treat this.
Edit: well i got rid of these errors but i still have my original problem of "incorrect username and password"
with error on console at login "TRACE : matrixpasswd NOT usbbind user 32"
Find solution at your account registration script. With 1.4.4 build password creating is changed. Now available password in database must be like this "0x"+'login'+'password' (login and password in md5). For example, for login 'Player' with password 'pass' convert 'Playerpass' into md5 ('38fa7e32a4e7a64f5cc36803d1aabe92'), then add 0x (zero and x) at the beginning of your md5 ('0x38fa7e32a4e7a64f5cc36803d1aabe92'). It should be work.
PHP Code:$Salt = "0x".md5($Login.$Pass);
MySQL_Query("call adduser('$Login', '$Salt', '0', '0', '0', '0', '$Email', '0', '0', '0', '0', '0', '0', '0', '', '', '$Salt')") or die ("Can't execute query.");
$mysqlresult=MySQL_Query("select * from `users` WHERE `name`='$Login'");
$User_ID=MySQL_result($mysqlresult,0,'ID');
MySQL_Query("call usecash('$User_ID',1,0,1,0,500000,1,@error)") or die ("usecash failed!");
echo "Account <b>".$Login."(".$User_ID.")"."</b> has been registered.";