• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[10.31][TFS 1.0] "EvoRPG by Zbizu" v5

Its sqlite? or Mysql like everything else... if mysql make it sqlite please so i can localhost! :)
 
@demon47
even heard of xampp?
it's not secure, but for tests on localhost it's perfect
 
How do i get the account manager?
i made an account in mysql's phpmyadmin for localhost, but i cant connect, im using marks ip changer and a 10.31 client but it keeps saying user and pass is wrong?
 
task window fix: now supports double click and escape:
go to data\lib\020_task_lib.lua and replace this:
Code:
  taskWindow:addButton(1, "Select")
  taskWindow:addButton(2, "Cancel")
to this:
Code:
  taskWindow:addButton(1, "Select")
   taskWindow:setDefaultEnterButton(1)
  taskWindow:addButton(2, "Cancel")
   taskWindow:setDefaultEscapeButton(2)

How do i get the account manager?
i made an account in mysql's phpmyadmin for localhost, but i cant connect, im using marks ip changer and a 10.31 client but it keeps saying user and pass is wrong?

try to encode your password using sha1
 
I live in Belgium, it has security protection, i only can play localhost but can't setup a server by police. Thats why ^^

TFS is server application too. If it's against the law, don't do it.
 
@Dark Sikis
afaik otclient don't have this feathure yet so you have to program it yourself

@groncio123
I'll post fix within few minutes(I'm on phone now)
 
Everyone who is complaining about difficulty to create testing account on MySQL here are example queries:
INSERT INTO `accounts` (
`name` ,
`password` ,
`type`
)
VALUES (
'ACCOUNT_NAME', 'PASSWORD IN SHA1', '5'
)
*sha1 is encryption method, you may generate such thing online, for example for password 'test2154' this field will be: '9a47dc4b626ae363dbaacda68af72a74f9e54dab'

INSERT INTO `players` (`id`, `name`, `group_id`, `account_id`) VALUES ('player_id', 'CHARACTER NAME', 'group_id', 'acc_id');
*player_id, acc_id - replace to '1' if it's first account/player in database
*group_id - '1' - player, '2' - gm, '3' - god

No more spoonfeeding. If you want to be good, start learning yourself.

@demon47
I understood your statement.
It's forbidden in your country for some reason. I'm not going to help you.
 
This is best EVO server, where i play. But i can't found (Start POI, INQ, DHQ, Demon Oak). Where is Frost Dragons or whatever (Ice Land).
Zbizu come on GG.
 
Back
Top