Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

(Tera Project) Tera Emulator by P5yl0 Update 140315

Initiate Mage
Joined
Mar 13, 2015
Messages
5
Reaction score
0
EvilEva - (Tera Project) Tera Emulator by P5yl0 Update 140315 - RaGEZONE Forums

What is it? :ehh:
 
Joined
Feb 2, 2012
Messages
412
Reaction score
249
this message appears when you close the game and the launcher (starter is shutdown)
when the game starts dont think about it .
click okay.. and forget it..
its a addon from the starter ^^
 
Junior Spellweaver
Joined
Mar 3, 2015
Messages
164
Reaction score
75
i'm here.
gonna to download and test it now.



Not working.
Now it can't connect to webserver.



I guess it's better to use old executable (it works everywhere)
Just change Ip with hex editor and no problems
 
Joined
Feb 2, 2012
Messages
412
Reaction score
249
but client not works :?:
i know your error:
endpopup(65809) -tera.exe start stopped cuase of missing serverlist

i m trying around with a copy of the official launcher..
and forgot to put the serverlist files on the webpage when i tried to start the game with the starter alone...
i got that same error...

that means you have some fail on the web files.. and the serverlist files are not found or else..
thats not a starter problem thats a config fail from the webserver files..
 
Junior Spellweaver
Joined
Mar 3, 2015
Messages
164
Reaction score
75
i've tried now on windows 8 and it worked fine
but on windows 7 sp 1 ultimate it doesn't works (don't know why)
pressing login and nothing happens
 
Initiate Mage
Joined
Jul 3, 2012
Messages
30
Reaction score
13
on Win7 64bit 4gb ram and i3 works well, its still bugged somewhere for what i have watch, but very nice relase, the bugs i have encourred are these +/- : if you delete all quests from the short menu , and you wanna add just the important missions , there nothing happens , remain empty. the second is when you relog your skill bar is empty too. and mount now work right !! , same for the login and the launcher , im making survival tera :D , grats P5yl0.

UPDATE , cannot Climb up , remain there and nothing happen. i hope these help to you in ur work =) .

EvilEva - (Tera Project) Tera Emulator by P5yl0 Update 140315 - RaGEZONE Forums
 
Last edited:
Joined
Feb 2, 2012
Messages
412
Reaction score
249
Win 7 Ultimate - 32 bit - working
HodPfGy - (Tera Project) Tera Emulator by P5yl0 Update 140315 - RaGEZONE Forums


Win 8.1Enterprise - 64bit - working
P6lyXfT - (Tera Project) Tera Emulator by P5yl0 Update 140315 - RaGEZONE Forums


using one and the same tera folder... and files... !

sometimes.. i realized...the launcher doesn´t really react..
after a pc restart it worked again without problem...
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Mar 3, 2015
Messages
164
Reaction score
75
Well, i don't know how it's coded, but it doesn't works.

website is working:

EvilEva - (Tera Project) Tera Emulator by P5yl0 Update 140315 - RaGEZONE Forums



.ini

WebServerUrl=http://127.0.0.1

Login doesn't works (just nothing happens after pressing Login button):

EvilEva - (Tera Project) Tera Emulator by P5yl0 Update 140315 - RaGEZONE Forums
 
Junior Spellweaver
Joined
Mar 3, 2015
Messages
164
Reaction score
75
daily fixes:
3. inventory saving between logout/relog
4. characters deleting from database
5. attack/skills delay impoving
6. updating character after relog (correct animation with weapon, info)

on coding: ui setting saving
 
Shh, quiet, you might piss somebody off
Developer
Joined
Dec 23, 2011
Messages
1,795
Reaction score
2,139
i manage already about how fix UI Setting save ( is done in my head, i just need write, probably you too )
add on skype. we could work together...
skype : adrianolls
i'm going sleep but tomorrow i'm here to work too
 
Junior Spellweaver
Joined
Mar 3, 2015
Messages
164
Reaction score
75
it's easy

public static void SaveCharacterSettings(Player player, int id)
{
try
{
MySqlConnector.Execute("INSERT INTO character_settings (charId, setting_" + id + ") VALUES (" +
player.PlayerId + ",0x" +
Functions.BytesToHex(id == 1 ? player.Setting1 : new byte[] {0x00}) +
") ON DUPLICATE KEY UPDATE setting_" + id + " = 0x" +
Functions.BytesToHex(id == 1 ? player.Setting1 : new byte[] {0x00}));
}
catch (Exception e)
{
Logger.Log.WarnException("DbScrPlayer: Can't insert or update char settings.", e);
}
}
 
Junior Spellweaver
Joined
Mar 3, 2015
Messages
164
Reaction score
75
LOL (different character = different ui settings)
otherwise ui setting will be always same for every char on account
 
Junior Spellweaver
Joined
Mar 3, 2015
Messages
164
Reaction score
75
yep hotkeys (hotkey bar)
currently only hotkey bar saving on priority

other settings not so (later)
 
Back
Top