Author | Message | |||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ![]() Ins, I do think this is because of my setup.. (No time to check) I just want to make sure this hasen't happened to anybody else. I've got 50 errors .. ||=== eoserv, MYSQL+SQLITE ===| Let me know. Thanks.
|
| ![]() xIFearlessIxx posted: (15th Apr 2011 01:40 am) Did you follow my MYSQL guide a few pages back? Also make sure your CodeBlocks looks similar to this. https://eoserv.net/forum/topic/13040 Your MYSQL must be installed in COMPLETE mode as well as ODBC and SQLYOG or HeidiSQL.
|
| ![]() When I make a Character I Dc but the character is made then when i try loging back in dont let me i get this errrrro
[ERR] Client caused an exception and was closed: 174.99.10.154.
[ERR] Database_QueryFailed: no such column: hidden
--- æ»æ˜¯æ»äº†
|
| ![]() is this in sqlite? oh and um is the link on the first page the updated one?
|
| ![]() Death posted: (15th Apr 2011 01:03 pm) Don't attempt to use any other database besides the one that comes with the server. You absolutely have to use insomniac's database. Just clear out the accounts after It's executed.
|
| ![]() whats wrong with the admin system it dont work at all tried to spawn item and didnt work
|
| ![]() agenttubs posted: (20th Apr 2011 06:03 pm) He deleted $si, $di $sn (I re-added it on mine) and he change the admin commands to #.
|
| ![]() agenttubs posted: (20th Apr 2011 06:03 pm) Yes, Hollow is correct in Talk.cpp you can search for if (this->player->character->admin && message[0] == '#') { then change # to $ or what ever /, it was changed because of the admin command flood rate!
|
| ![]() What are commands for the rev now ?
|
| ![]() This is an updated version of my binary. CLICK HERE! to download. Replace the old eoserv.exe with mine. Commands are provided
with the exe.
|
| ![]() Im not a mod but +1
|
| ![]() I have just realized that my admin commands don't work... I have no clue why. They didn't work when I was testing the source either. Anybody else have this problem?
|
| ![]() xIFearlessIxx posted: (21st Apr 2011 01:51 pm) Read back :/ 1. Isomniac changed $ to #.
2. isomniac deleted $si, $di, $sn 3. just copy and paste the talk.cpp (from the admin commands) from another eoserv rev.
@isomniac I had that flood shit too. but when i made a new char and promoted myself i didnt have it + if you make urself admin level 5 you get that non-stop (on 1 rev i tested once it was probaly this rev)
|
| ![]() xIFearlessIxx posted: (21st Apr 2011 01:51 pm) I know why his commands aren't working, during his work on this release his daughter had gotten a hold of his computer and did something to it, if you go to the talk.cpp you'll notice several of this code. if(this->player->character->player && message[0] == '#') { std::string command; std::vector<std::string> arguments = util::explode(' ', message); command = arguments.front().substr(1); arguments.erase(arguments.begin()); To get commands to work in the source, you have to disable or remove all of the coding like that and place this code under. ofstream messag1; messag1.open ("public.txt" , ios::out | ios::app | ios::binary); messag1 << "[Public]" + this->player->character->name + "..." + message && "Writing this to a file.\n"; messag1.close(); //return 0; } if (message.empty()) { return false; } And take off the else on else if of the first command after the code with #. You must have a little bit of coding knowledge to get it to work correctly, I will not help you figure it out. But CLICK HERE! for my talk.cpp from my binary release. Where it says "YOURCHARACTERNAME" and "YOURCHARACTERNAMEHERE" and"OTHERCHARACTER" make sure you put your character name into those areas and and change the "adminpassword" This is for making yourself admin level 5. #admin charactername adminpassword is the command to use for it. Also you'll notice in his source that the class stats are hard coded in. You'll have to change them to your specifics or disable them like I did incharacter.cpp in my binary release. Anyway have fun. :)
| |