I already told you before, this you are doing is a disrispect towards the author of this thread, and the rest of us, if you dont like it, dont use it, if you find a so called "bug" <EVEN IT'S PROBABLY GOING TO BE A BAD CONFIG>, you report it here, make a "buglist" if you find a few.
That's called constructive critics dude. You flaming other people's work (Ulf in this case) is very sad, useless, and annoying.-
If your critic isnt constructive, dont post it here, keep it for yourself.-
Well these are my fixes for AI Julia 1.1.0.298, to custom custom wings and jewels for now for: 1.03k jpn, but I go to translate for: 1.03 ENG protocol. (I can fix all visual bug's in wings & description text bug's in: jewels).
I put too: new custom effects & re-coded 3rd summoner wings effects (Wings of Dimension) on: Wings of Eternal remade model by me. :)
copy this effects directly to main.exe without that the original item lost them.
![]()
is to add more columns to record the resets for compatibility
with web Daldegan
reset coluns
daily, weekly, monthly
and add new itens in server and posible?
and fix limiter mobs to 10000 more?
Last edited by cronuscorp; 30-06-13 at 08:10 AM.
what about cusum jewels? someone try to add this? in item.txt item.bmd?
in this eng main jewels pictures work?
When I open the GS of Castle-Siege, after 2-10 minutes, it closes without any warning....
Also how do I add the /evo command?
#Reported for Double-Posting.
I'm editing the files for you right now, give me a few mins.
Edit: fk uploads are slow in my pc.
@Prringles2013: Here ya go: http://www.mediafire.com/download/b0...0.9)EDITED.rar
Last edited by ianvalls90; 01-07-13 at 10:38 PM.
Fixed Pc Point Store
PcBangPointItemOpt.txt
PcPoints_WCoins.datCode://========================================================================= //Item Item Buying Condition Ability Keep Exp Item No //Type Inde Point Point Time % % Exp //========================================================================= 0 13 96 320 0 1 1800 0 0 0 //Seal of Strength 14 55 240 0 0 0 0 0 0 //Green Chaos Box 14 56 480 0 0 0 0 0 0 //Red Chaos Box 14 57 720 0 0 0 0 0 0 //Purple Chaos Box end
With other seals dont workCode://Pc Points Cafe Shop //================================================================================================================== //Item Item Item Item Is Is Item Item Is Socket Socket Socket Socket Socket Cost //Type Index Level Option Luck Skill Dur Exc Anc 1 2 3 4 5 //================================================================================================================== 1 14 55 0 0 0 0 0 0 0 255 255 255 255 255 240 14 56 0 0 0 0 0 0 0 255 255 255 255 255 480 14 57 0 0 0 0 0 0 0 255 255 255 255 255 720 13 96 0 0 0 0 0 0 0 255 255 255 255 255 320 end
database from jpn and eng has the same columns ?
can someone give me the lastest uncracked Eng protocol Season 4.6 main.exe ?
When I start GS (sub), appears several times the following message:
"DataServer Connected (myip) Port (55962)
PRINT:
![]()
Last edited by zacki78; 02-07-13 at 09:03 PM.
[/PHP]PHP Code:#include "RealmSystem.h"
realmsystem RealmSystem;
void realmsystem::InitConfig()
{
this->config.enabled = Configs.GetInt(0,1,0,"GameServerInfo","RealmSupportEnabled",".//data//ServerInfo.dat");
if(this->config.enabled == 0)
return;
GetPrivateProfileString("GameServerInfo","ServerName","Realm1",this->config.name,20,".//data//ServerInfo.dat");
this->config.id = Configs.GetInt(0,400,0,"GameServerInfo","ServerCode",".//data//ServerInfo.dat");
}
bool realmsystem::OnUserConnect(DWORD aIndex)
{
AddTab[aIndex].RealmOk = true;
if(this->config.enabled == 0){
return true;
}
OBJECTSTRUCT *gObj = (OBJECTSTRUCT*)OBJECT_POINTER(aIndex);
MuOnlineQuery.ExecQuery("SELECT realm FROM MEMB_INFO WHERE memb___id = '%s'",gObj->AccountID);
MuOnlineQuery.Fetch();
int realm = MuOnlineQuery.GetAsInteger("realm");
MuOnlineQuery.Close();
char realmName[20];
MuOnlineQuery.ExecQuery("SELECT realmName FROM MEMB_INFO WHERE memb___id = '%s'",gObj->AccountID);
MuOnlineQuery.Fetch();
MuOnlineQuery.GetAsString(realmName,"realmName");
MuOnlineQuery.Close();
if(realm != this->config.id && realm != NULL) // 0: Free realm for all accounts
{
Chat.Message(0,gObj,"You cant connect to this realm with this account!",this->config.name);
Chat.Message(0,gObj,"This account is bind to '%s' realm!",realmName);
AddTab[aIndex].RealmOk = false;
return false;
}
return true;
}
void realmsystem::onCharacterConnect(DWORD aIndex)
{
if(AddTab[aIndex].RealmOk == false)
{
OBJECTSTRUCT *gObj = (OBJECTSTRUCT*)OBJECT_POINTER(aIndex);
gObjCloseSet(aIndex,2);
Log.ConsoleOutPut(1, c_Red, t_Error, "[Realm] Account '%s' connect wrong realm!",gObj->AccountID);
}
}
[PHP]#include "StdAfx.h"
#include "Configs.h"
#include "Utilits.h"
#include "Query.h"
#include "ChatCommands.h"
#include "OffTrade.h"
class realmsystem
{
public:
void InitConfig();
bool OnUserConnect(DWORD aIndex);
void onCharacterConnect(DWORD aIndex);
struct
{
int enabled;
char name[20];
int id;
}config;
};
extern realmsystem RealmSystem;
BASIC realm system, that allows accounts connect to one specified gameserver only... this src is tested and working, but i didnt finish this... best method would be to add this uppon join reuqest...PHP Code:case 0x00: // Char List
{
RealmSystem.OnUserConnect(aIndex);
}
break;
case 0x03: // Char JoinSend
{
RealmSystem.onCharacterConnect(aIndex);
}
Here I leave this video demo of my project based on: AI Julia 1.1.0.298 -> Updated by me to: 1.1.0.322 version
with: Custom Wings + Custom Jewels Fully Working!!!
PS: This project is still under development, but when ready, will be released to everyone.