Page 2 of 8 FirstFirst 123456 ... LastLast
Results 16 to 30 of 119
Like Tree38Likes

Penguin here, check this out.

This is a discussion on Penguin here, check this out. within the Private Servers forums, part of the Knight Online (ko4life.com) category; Good job's Darkflamed I can't wait for HKO...
Page: 2


  1. #16
    Banned Regular Member
    Join Date
    Nov 2013
    Location
    PL-KnightOnline
    Posts
    172

    Default

    Good job's Darkflamed

    I can't wait for HKO

  2. #17
    Senior Member TheREALPenguin's Avatar
    Join Date
    Feb 2012
    Posts
    260

    Default

    Quote Originally Posted by twostars View Post
    You know how you wrote a post, and it was deleted, and you claim that it was so terribly misunderstood?

    I'm pretty sure you did the same thing to mine; I don't make it a habit of looking at PMs. How am I supposed to know you were helping out?
    You had 20 odd posts, and were a member for I don't even remember how long. All of the last posts I skimmed over were all non-contributory, the few posts before that being way older.

    Do you see how I see you now? Like all the others I deal with, I skimmed over your account to see if you were at all active, what you'd actually done in the way of contributions (really, nada), and taking into account your latest post determined you were clearly not going to be contributing, thus no reason to bother with warning (and you posting more BS and getting yourself banned anyway). That's what I mean.

    I'm not even talking about Darkflamed, but even if I were; he's contributed perhaps one SQL snippet that I can think of, no tools, so for all intents and purposes they don't even exist. ;_;
    That's all well and good, but most of the stuff, that was even asked, was already answered before we even got to them. Why double answer stuff? You sit there, all day, and answer posts with "There is a search function". Not ALL the time, but that is most of what you have to do.

    Whatever, misunderstandings all around.

    Edit: The stuff we posted, or did help on, was the stuff that wasn't already answered. And the stuff that wasn't already readily on the forums, besides Darkflameds tools. But I don't think you're gonna go sharing your Deathlogs, or any of the other stuff that makes up LegitKO. Lol.

  3. #18
    Senior Member TheREALPenguin's Avatar
    Join Date
    Feb 2012
    Posts
    260

    Default

    Quote Originally Posted by twostars View Post
    You know how you wrote a post, and it was deleted, and you claim that it was so terribly misunderstood?

    I'm pretty sure you did the same thing to mine; I don't make it a habit of looking at PMs. How am I supposed to know you were helping out?
    You had 20 odd posts, and were a member for I don't even remember how long. All of the last posts I skimmed over were all non-contributory, the few posts before that being way older.

    Do you see how I see you now? Like all the others I deal with, I skimmed over your account to see if you were at all active, what you'd actually done in the way of contributions (really, nada), and taking into account your latest post determined you were clearly not going to be contributing, thus no reason to bother with warning (and you posting more BS and getting yourself banned anyway). That's what I mean.

    I'm not even talking about Darkflamed, but even if I were; he's contributed perhaps one SQL snippet that I can think of, no tools, so for all intents and purposes they don't even exist. ;_;


    Despite you advertising your server in this thread, and in your original post clearly stating "no can haz" (however you put it), this intention is truly clear.

    Let me be clear: I don't give a fuck about what you've accomplished, makes no difference to me. Go find serious developers, go change the world. Great. Maybe make that clear in your post next time though, instead of just being (or at least, appearing to be) an arrogant prick?
    Sigh. I thought we could get passed it, whatever. You didn't even give me a chance to say anything other than acting like a fat kid that just got cake in a post. Excitement, it's srs bsns.

    Also, I CLEARLY said lets not talk about my server in this thread, I said that, I did, you can quote it.

  4. #19
    Senior Member
    Join Date
    Dec 2009
    Posts
    1,805

    Default

    Quote Originally Posted by TheREALPenguin View Post
    Edit: The stuff we posted, or did help on, was the stuff that wasn't already answered. And the stuff that wasn't already readily on the forums, besides Darkflameds tools. But I don't think you're gonna go sharing your Deathlogs, or any of the other stuff that makes up LegitKO. Lol.
    Bullshit. What about my dupe scanner, or my item importer, or my item log importer, or my inventory editor, or my BytePatcher (and the plethora of converted patches), or my Ebenezer/Client Editor, or any of my 9999999 raw assembly patches, or the snoxd-koserver project, or...
    But no, I don't share the death logs... really? >.>

    People can't use them, is why.

    Here, have at it:
    Code:
    #include "stdafx.h"
    #include "generic_log_deaths.h"
    
    BOOL WINAPI DeathLogger(LPVOID lpParam);
    bool InsertDeathLogToDatabase(std::unique_ptr<OdbcCommand>& dbCommand, DeathLog * origLog);
    
    static FastMutex s_insertionLock;
    static std::queue<DeathLog *> s_deathQueue;
    
    DEPENDS_ON(OnPlayerDeath);
    DECL_PATCH(LogDeaths,
    	IMPL_PATCH()
    	{
    		ADD_CALLBACK(HookOnPlayerDeath, [](CUser * pUser, int killerID) {
    			// Only log deaths from players.
    			if (VALID_UID(killerID))
    				pUser->LogDeath(killerID);
    		}, (CUser *, int));
    
    		DWORD dwThreadId;
    		CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE) &DeathLogger, NULL, NULL, &dwThreadId);
    	}
    );
    
    void CUser::LogDeath(int killerID)
    {
    	CUser * pKiller = m_pMain->GetUserPtr(killerID);
    	if (pKiller != nullptr)
    		InsertDeathToLogQueue(this, pKiller);
    }
    
    void DeathLog::LogUser::Load(CUser * pUser)
    {
    	strcpy(strAccountID, pUser->m_strAccountID);
    	strcpy(strUserID, pUser->m_pUserData->m_id);
    	fCurX = pUser->m_pUserData->m_curx;
    	fCurZ = pUser->m_pUserData->m_curz;
    
    	_PARTY_GROUP * pParty;
    	if (pUser->m_sPartyIndex < 0
    		|| (pParty = m_pMain->GetPartyPtr(pUser->m_sPartyIndex)) == nullptr)
    		return LoadPartyUser(0, pUser);
    
    	for (int i = 0; i < MAX_PARTY_USERS; i++)
    	{
    		CUser * pPartyUser = m_pMain->GetUserPtr(pParty->uid[i]);
    		if (pPartyUser != nullptr)
    			LoadPartyUser(i, pPartyUser);
    	}
    }
    
    void DeathLog::LogUser::LoadPartyUser(int pos, CUser * pUser)
    {
    	PartyUser& user = party[pos];
    	int index = 0;
    	strcpy(user.strUserID, strUserID);
    	for (int i = 0; i < SLOT_MAX; i++)
    		SetDWORD((char *)user.strItem, pUser->m_pUserData->m_sItemArray[i].nNum, index);
    }
    
    void _InsertDeathLogToQueue(DeathLog * d)
    {
    	FastGuard lock(s_insertionLock);
    	s_deathQueue.push(d);
    }
    
    void InsertDeathToLogQueue(CUser * pVictim, CUser * pKiller)
    {
    	if (pVictim == nullptr
    		|| pKiller == nullptr)
    		return;
    
    	DeathLog * d = new DeathLog;
    	memset(d, 0, sizeof(DeathLog));
    
    	d->deathTime = UNIXTIME;
    	d->killer.Load(pKiller);
    	d->victim.Load(pVictim);
    
    	_InsertDeathLogToQueue(d);
    }
    
    BOOL WINAPI DeathLogger(LPVOID lpParam)
    {
    	OdbcConnection gameDB;
    	std::string gameDSN, gameUID, gamePWD;
    
    	sIni.GetString("ODBC", "GAME_DSN", "KN_online", gameDSN, false);
    	sIni.GetString("ODBC", "GAME_UID", "knight", gameUID, false);
    	sIni.GetString("ODBC", "GAME_PWD", "knight", gamePWD, false);
    
    	if (!gameDB.Connect(gameDSN, gameUID, gamePWD))
    	{
    		OdbcError *error = gameDB.GetError();
    		Log.Error("Database", "Could not connect to the database server.");
    		Log.Error("Database", "The error returned was:\n%s", error->ErrorMessage.c_str());
    		delete error;
    		return FALSE;
    	}
    
    	Log.Notice("Database", "[Death logger] successfully connected to %s", gameDSN.c_str());
    	std::unique_ptr<OdbcCommand> dbCommand(gameDB.CreateCommand());
    
    	std::queue<DeathLog *> activeQueue;
    	while (true)
    	{
    		// Transfer items from the insertion queue
    		// to the active queue, so while we're dealing
    		// with the database we're not blocking insertions.
    		s_insertionLock.Acquire();
    		while (!s_deathQueue.empty())
    		{
    			activeQueue.push(s_deathQueue.front());
    			s_deathQueue.pop();
    		}
    		s_insertionLock.Release();
    
    		while (!activeQueue.empty())
    		{
    			DeathLog * d = activeQueue.front();
    			if (!InsertDeathLogToDatabase(dbCommand, d))
    				break;
    
    			delete d;
    			activeQueue.pop();
    		}
    		Sleep(1000);
    	}
    
    	return TRUE;
    }
    
    bool InsertDeathLogToDatabase(std::unique_ptr<OdbcCommand>& dbCommand, DeathLog * origLog)
    {
    	if (dbCommand.get() == nullptr)
    	{
    		Log.Warning("DeathLog", "Failed to insert death log. No command available.");
    		return false;
    	}
    
    	static bool bound = false, prepared = false;
    	static DeathLog d = {0};
    
    	// Replace death log entry data.
    	memcpy(&d, origLog, sizeof(DeathLog));
    
    	if (!bound)
    	{
    		dbCommand->AddInputParameter(&d.byZoneID);
    		dbCommand->AddInputParameter(&d.deathTime);
    		dbCommand->AddInputParameter(d.killer.strAccountID);
    		dbCommand->AddInputParameter(d.killer.strUserID);
    		dbCommand->AddInputParameter(&d.killer.fCurX);
    		dbCommand->AddInputParameter(&d.killer.fCurZ);
    		dbCommand->AddInputParameter(d.victim.strAccountID);
    		dbCommand->AddInputParameter(d.victim.strUserID);
    		dbCommand->AddInputParameter(&d.victim.fCurX);
    		dbCommand->AddInputParameter(&d.victim.fCurZ);
    
    		for (int i = 0; i < MAX_PARTY_USERS; i++)
    		{
    			auto& user = d.killer.party[i];
    			dbCommand->AddInputParameter(user.strUserID, sizeof(user.strUserID));
    			dbCommand->AddInputParameter(user.strItem, sizeof(user.strItem));
    		}
    
    		for (int i = 0; i < MAX_PARTY_USERS; i++)
    		{
    			auto& user = d.victim.party[i];
    			dbCommand->AddInputParameter(user.strUserID, sizeof(user.strUserID));
    			dbCommand->AddInputParameter(user.strItem, sizeof(user.strItem));
    		}
    
    		bound = true;
    	}
    
    	if (!prepared)
    	{
    		if (!dbCommand->Prepare("{CALL INSERT_DEATH_LOG "
    								"(?, ?, "       // byZoneID, date
    								"?, ?, ?, ?, "  // killer account, char, x, z
    								"?, ?, ?, ?, "  // victim account, char, x, z
    								"?,?, ?,?, ?,?, ?,?, ?,?, ?,?, ?,?, ?,?, "   // killer party (name, items)
    								"?,?, ?,?, ?,?, ?,?, ?,?, ?,?, ?,?, ?,?)}")) // victim party (name, items)
    		{
    
    			const char * error = dbCommand->GetError();
    			Log.Error("DeathLog", "Error: %s", error);
    			return false;
    		}
    
    		prepared = true;
    	}
    
    
    	if (!dbCommand->ExecutePrepared())
    	{
    		const char * error = dbCommand->GetError();
    		Log.Error("DeathLog", "Error: %s", error);
    		prepared = false;
    		return false;
    	}
    
    	return true;
    }
    And now you have it.

    Edit:
    As for your server advertising, okay:
    Quote Originally Posted by TheREALPenguin View Post
    So after a month and a half of Darkflamed reverse engineering the n3 files. We can create new maps, new buildings, new objects, new bosses, new weapons, new armor, new character models, effects. We're coming back, in a very very big way.

    Whose ready for a new age of Private KO?

    -HellsReapersKO
    This is just another misunderstanding, right?
    nickos3 likes this.

  5. #20
    Senior Member TheREALPenguin's Avatar
    Join Date
    Feb 2012
    Posts
    260

    Default

    Quote Originally Posted by twostars View Post
    Bullshit. What about my dupe scanner, or my item importer, or my item log importer, or my inventory editor, or my BytePatcher (and the plethora of converted patches), or my Ebenezer/Client Editor, or any of my 9999999 raw assembly patches, or the snoxd-koserver project, or...
    But no, I don't share the death logs... really? >.>

    People can't use them, is why.

    Here, have at it:
    Code:
    #include "stdafx.h"
    #include "generic_log_deaths.h"
    
    BOOL WINAPI DeathLogger(LPVOID lpParam);
    bool InsertDeathLogToDatabase(std::unique_ptr<OdbcCommand>& dbCommand, DeathLog * origLog);
    
    static FastMutex s_insertionLock;
    static std::queue<DeathLog *> s_deathQueue;
    
    DEPENDS_ON(OnPlayerDeath);
    DECL_PATCH(LogDeaths,
        IMPL_PATCH()
        {
            ADD_CALLBACK(HookOnPlayerDeath, [](CUser * pUser, int killerID) {
                // Only log deaths from players.
                if (VALID_UID(killerID))
                    pUser->LogDeath(killerID);
            }, (CUser *, int));
    
            DWORD dwThreadId;
            CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE) &DeathLogger, NULL, NULL, &dwThreadId);
        }
    );
    
    void CUser::LogDeath(int killerID)
    {
        CUser * pKiller = m_pMain->GetUserPtr(killerID);
        if (pKiller != nullptr)
            InsertDeathToLogQueue(this, pKiller);
    }
    
    void DeathLog::LogUser::Load(CUser * pUser)
    {
        strcpy(strAccountID, pUser->m_strAccountID);
        strcpy(strUserID, pUser->m_pUserData->m_id);
        fCurX = pUser->m_pUserData->m_curx;
        fCurZ = pUser->m_pUserData->m_curz;
    
        _PARTY_GROUP * pParty;
        if (pUser->m_sPartyIndex < 0
            || (pParty = m_pMain->GetPartyPtr(pUser->m_sPartyIndex)) == nullptr)
            return LoadPartyUser(0, pUser);
    
        for (int i = 0; i < MAX_PARTY_USERS; i++)
        {
            CUser * pPartyUser = m_pMain->GetUserPtr(pParty->uid[i]);
            if (pPartyUser != nullptr)
                LoadPartyUser(i, pPartyUser);
        }
    }
    
    void DeathLog::LogUser::LoadPartyUser(int pos, CUser * pUser)
    {
        PartyUser& user = party[pos];
        int index = 0;
        strcpy(user.strUserID, strUserID);
        for (int i = 0; i < SLOT_MAX; i++)
            SetDWORD((char *)user.strItem, pUser->m_pUserData->m_sItemArray[i].nNum, index);
    }
    
    void _InsertDeathLogToQueue(DeathLog * d)
    {
        FastGuard lock(s_insertionLock);
        s_deathQueue.push(d);
    }
    
    void InsertDeathToLogQueue(CUser * pVictim, CUser * pKiller)
    {
        if (pVictim == nullptr
            || pKiller == nullptr)
            return;
    
        DeathLog * d = new DeathLog;
        memset(d, 0, sizeof(DeathLog));
    
        d->deathTime = UNIXTIME;
        d->killer.Load(pKiller);
        d->victim.Load(pVictim);
    
        _InsertDeathLogToQueue(d);
    }
    
    BOOL WINAPI DeathLogger(LPVOID lpParam)
    {
        OdbcConnection gameDB;
        std::string gameDSN, gameUID, gamePWD;
    
        sIni.GetString("ODBC", "GAME_DSN", "KN_online", gameDSN, false);
        sIni.GetString("ODBC", "GAME_UID", "knight", gameUID, false);
        sIni.GetString("ODBC", "GAME_PWD", "knight", gamePWD, false);
    
        if (!gameDB.Connect(gameDSN, gameUID, gamePWD))
        {
            OdbcError *error = gameDB.GetError();
            Log.Error("Database", "Could not connect to the database server.");
            Log.Error("Database", "The error returned was:\n%s", error->ErrorMessage.c_str());
            delete error;
            return FALSE;
        }
    
        Log.Notice("Database", "[Death logger] successfully connected to %s", gameDSN.c_str());
        std::unique_ptr<OdbcCommand> dbCommand(gameDB.CreateCommand());
    
        std::queue<DeathLog *> activeQueue;
        while (true)
        {
            // Transfer items from the insertion queue
            // to the active queue, so while we're dealing
            // with the database we're not blocking insertions.
            s_insertionLock.Acquire();
            while (!s_deathQueue.empty())
            {
                activeQueue.push(s_deathQueue.front());
                s_deathQueue.pop();
            }
            s_insertionLock.Release();
    
            while (!activeQueue.empty())
            {
                DeathLog * d = activeQueue.front();
                if (!InsertDeathLogToDatabase(dbCommand, d))
                    break;
    
                delete d;
                activeQueue.pop();
            }
            Sleep(1000);
        }
    
        return TRUE;
    }
    
    bool InsertDeathLogToDatabase(std::unique_ptr<OdbcCommand>& dbCommand, DeathLog * origLog)
    {
        if (dbCommand.get() == nullptr)
        {
            Log.Warning("DeathLog", "Failed to insert death log. No command available.");
            return false;
        }
    
        static bool bound = false, prepared = false;
        static DeathLog d = {0};
    
        // Replace death log entry data.
        memcpy(&d, origLog, sizeof(DeathLog));
    
        if (!bound)
        {
            dbCommand->AddInputParameter(&d.byZoneID);
            dbCommand->AddInputParameter(&d.deathTime);
            dbCommand->AddInputParameter(d.killer.strAccountID);
            dbCommand->AddInputParameter(d.killer.strUserID);
            dbCommand->AddInputParameter(&d.killer.fCurX);
            dbCommand->AddInputParameter(&d.killer.fCurZ);
            dbCommand->AddInputParameter(d.victim.strAccountID);
            dbCommand->AddInputParameter(d.victim.strUserID);
            dbCommand->AddInputParameter(&d.victim.fCurX);
            dbCommand->AddInputParameter(&d.victim.fCurZ);
    
            for (int i = 0; i < MAX_PARTY_USERS; i++)
            {
                auto& user = d.killer.party[i];
                dbCommand->AddInputParameter(user.strUserID, sizeof(user.strUserID));
                dbCommand->AddInputParameter(user.strItem, sizeof(user.strItem));
            }
    
            for (int i = 0; i < MAX_PARTY_USERS; i++)
            {
                auto& user = d.victim.party[i];
                dbCommand->AddInputParameter(user.strUserID, sizeof(user.strUserID));
                dbCommand->AddInputParameter(user.strItem, sizeof(user.strItem));
            }
    
            bound = true;
        }
    
        if (!prepared)
        {
            if (!dbCommand->Prepare("{CALL INSERT_DEATH_LOG "
                                    "(?, ?, "       // byZoneID, date
                                    "?, ?, ?, ?, "  // killer account, char, x, z
                                    "?, ?, ?, ?, "  // victim account, char, x, z
                                    "?,?, ?,?, ?,?, ?,?, ?,?, ?,?, ?,?, ?,?, "   // killer party (name, items)
                                    "?,?, ?,?, ?,?, ?,?, ?,?, ?,?, ?,?, ?,?)}")) // victim party (name, items)
            {
    
                const char * error = dbCommand->GetError();
                Log.Error("DeathLog", "Error: %s", error);
                return false;
            }
    
            prepared = true;
        }
    
    
        if (!dbCommand->ExecutePrepared())
        {
            const char * error = dbCommand->GetError();
            Log.Error("DeathLog", "Error: %s", error);
            prepared = false;
            return false;
        }
    
        return true;
    }
    And now you have it.
    Yes, two, I know, you've shared a lot of shit, as a matter of fact, I believe I drunkenly wrote you on these forums and thanked you for your work. I'm sure you saw it. Weeeee really don't need your Deathlogs haha we have our own. I wasn't saying ooh share your deathlogs then. And really, how many people are even going to know what to do with that? Aside from you, Darkflamed, Johnny, and maybe 1 or 2 other people? Lulz. You made a useless point you really did. You didn't give me more than 1 excited post to even say anything haha. I wasn't REALLY even that big of a prick on that post. I didn't insult, anyone haha.

    Edit: I said a new age of Private KO, then yes, I did put my servers name at the bottom. Me oh my. I put the server that I represent.. On my post.. But facts are facts. Can't argue facts. I advertised my server.

  6. #21
    Senior Member
    Join Date
    Dec 2009
    Posts
    1,805

    Default

    Quote Originally Posted by TheREALPenguin
    And the stuff that wasn't already readily on the forums, besides Darkflameds tools. But I don't think you're gonna go sharing your Deathlogs, or any of the other stuff that makes up LegitKO. Lol.
    Quote Originally Posted by TheREALPenguin View Post
    I wasn't saying ooh share your deathlogs then. And really, how many people are even going to know what to do with that? Aside from you, Darkflamed, Johnny, and maybe 1 or 2 other people? Lulz.
    That was the fucking point. People can't use it.
    MySexualIntention likes this.

  7. #22
    Senior Member TheREALPenguin's Avatar
    Join Date
    Feb 2012
    Posts
    260

    Default

    Quote Originally Posted by twostars View Post
    That was the fucking point. You asked why I didn't share it (implying the worst); it's because people can't use it.
    And people can't use Darkflamed's? So, useless point.

    Oh my lawd, I didn't "imply" the worst. I'm just saying, you are getting paid to keep that shit to yourself and code everything for them, so why would you share it? And now you've shared something that doesn't matter. Really, I'm so done with this. You keep twisting my shit around trying to make me look like an ass haha. Doesn't, even, matter.

  8. #23
    Senior Member
    Join Date
    Dec 2009
    Posts
    1,805

    Default

    Quote Originally Posted by TheREALPenguin View Post
    And people can't use Darkflamed's? So, useless point.

    Oh my lawd, I didn't "imply" the worst. I'm just saying, you are getting paid to keep that shit to yourself and code everything for them, so why would you share it? And now you've shared something that doesn't matter. Really, I'm so done with this. You keep twisting my shit around trying to make me look like an ass haha. Doesn't, even, matter.
    a. Why are you replying to my pre-edited post? You posted after the edit, and then... proceeded to edit your post just... to further respond to the stuff that I removed? That's why I removed that in the first place, I misquoted. I'm sorry.
    b. You're comparing apples to oranges. You're comparing a tool with a UI to a random (modular) patch in a DLL. Can you see how one's usable and one isn't? That is the extent of that point.

    I truly don't understand how we even got to this point, or why we're splitting hairs over nothing?

    Really, you made it clear you're not sharing, and there's nothing wrong with that. I never said that there was.
    The leeching thing was only in relation to your account activity on the development forum, where you originally made the post; you'd not contributed anything, so
    as with everyone else that I deal with, I made the decision to simply forego the warn, because of this. That's it.

    Why are we even..
    Last edited by twostars; 03-23-2014 at 06:10 PM. Reason: edit

  9. #24
    Senior Member TheREALPenguin's Avatar
    Join Date
    Feb 2012
    Posts
    260

    Default

    Quote Originally Posted by twostars View Post
    a. Why are you replying to my pre-edited post? You posted after the edit, and then... proceeded to edit your post just... to further respond to the stuff that I removed? That's why I removed that in the first place, I misquoted. I'm sorry.
    b. You're comparing apples to oranges. You're comparing a tool with a UI to a random (modular) patch in a DLL. Can you see how one's usable and one isn't? That is the extent of that point.

    I truly don't understand how we even got to this point.
    Honestly I didn't even notice the changes I just edited it with the original quote, so I wasn't trying to like point anything out I just hit quote and then edited the post afterwards.

    Sort of apples to oranges, ish. There's some stuff that people can't use. But there is shit we can share, yeah. But we would like to get some stuff into our server before we do, is that an asshole move? Or is that like, a big deal? That is, we don't plan on NOT sharing how we do this, this is huge! We would love to share it, after we can do some stuff for our server before everything starts flying around. I think it's fair with all the work we did.

    I don't know how we got here either. I wasn't REALLY trying to be an asshole, I truly wasn't. Though I can see how you thought I was. I'll apologize for that, buuuut I really think you took it way worse than it was. So, can we just leave this -.-? Because I have never had any quarrels with you and I really don't want to start now, I see no point in it, it's childish.

    And yes, my post WAS childish, like I said, a fat kid who had just received cake, that was me when I was making the post. But not to be arrogant, just excitement.

    Not only that, BUT, the tools still have some work to be done. We can export and import weapons, but the export has some issues that need to be worked out for character models and what the export puts out.

    But I got a couple weapons in, and was ecstatic, and made the post. My bad. My bad.

  10. #25
    Senior Member
    Join Date
    Dec 2009
    Posts
    1,805

    Default

    Quote Originally Posted by TheREALPenguin View Post
    Honestly I didn't even notice the changes I just edited it with the original quote, so I wasn't trying to like point anything out I just hit quote and then edited the post afterwards.

    Sort of apples to oranges, ish. There's some stuff that people can't use. But there is shit we can share, yeah. But we would like to get some stuff into our server before we do, is that an asshole move? Or is that like, a big deal? That is, we don't plan on NOT sharing how we do this, this is huge! We would love to share it, after we can do some stuff for our server before everything starts flying around. I think it's fair with all the work we did.

    I don't know how we got here either. I wasn't REALLY trying to be an asshole, I truly wasn't. Though I can see how you thought I was. I'll apologize for that, buuuut I really think you took it way worse than it was. So, can we just leave this -.-? Because I have never had any quarrels with you and I really don't want to start now, I see no point in it, it's childish.
    Perhaps I did. Consider it left.

    If you're still all about the "let's change the scene" stuff, I have plenty of stuff sitting here that's probably not going to be put to use for a long time, if ever (especially if I keep adding to it the way I do).
    I mean, right at this second I'm (still) working on bringing the client source up to speed...

  11. #26
    Senior Member TheREALPenguin's Avatar
    Join Date
    Feb 2012
    Posts
    260

    Default

    Quote Originally Posted by twostars View Post
    Perhaps I did. Consider it left.

    If you're still all about the "let's change the scene" stuff, I have plenty of stuff sitting here that's probably not going to be put to use for a long time, if ever (especially if I keep adding to it the way I do).
    I mean, right at this second I'm (still) working on bringing the client source up to speed...
    Man, you and Darkflamed really need to talk to each other and add each other on skype. I'm not boasting him or anything, but I think he can help you more than anyone else currently in the scene other than Johnny who has absolutely no interest. Really, you two should talk.

  12. #27
    Senior Member
    Join Date
    Dec 2009
    Posts
    1,805

    Default

    Quote Originally Posted by TheREALPenguin View Post
    Man, you and Darkflamed really need to talk to each other and add each other on skype. I'm not boasting him or anything, but I think he can help you more than anyone else currently in the scene other than Johnny who has absolutely no interest. Really, you two should talk.
    We may have done so already, just... about you (and me, and how I run a community). Perhaps not the best of starts.

  13. #28
    Senior Member TheREALPenguin's Avatar
    Join Date
    Feb 2012
    Posts
    260

    Default

    Quote Originally Posted by twostars View Post
    We may have done so already, just... about you (and me, and how I run a community). Perhaps not the best of starts.
    Better to start than not start. He was just upset that his work was shot down after everything he's been doing, BUT, that was my fault, not yours, and he's reading this and we're on mic, so we're all at an understanding. I shouldn't have acted like a gitty little girl. My fault, my fault.

  14. #29
    Senior Member zuka's Avatar
    Join Date
    Sep 2012
    Posts
    959

    Default

    There is a same guy b1tching around in every pvp server advertisements topic, wtf is just going on
    wow

  15. #30
    Senior Member
    Join Date
    Dec 2009
    Posts
    1,805

    Default

    Quote Originally Posted by zuka View Post
    There is a same guy b1tching around in every pvp server advertisements topic, wtf is just going on
    wow
    Two words.

    Knight Online.
    zuka, ProJoinT and bigdudle like this.

Page 2 of 8 FirstFirst 123456 ... LastLast

Similar Threads

  1. How can a song be funny? check this out
    By WrongAnswerYouDie in forum Media
    Replies: 5
    Last Post: 09-03-2007, 04:46 PM
  2. can any mod or admin check this out :S
    By nephiha in forum General Chat
    Replies: 10
    Last Post: 10-15-2006, 04:25 PM
  3. check this out plz
    By flamthrow in forum Media
    Replies: 0
    Last Post: 06-14-2006, 05:51 AM
  4. WHAT ABOUT? CHECK THIS OUT!
    By stevouk in forum General Chat
    Replies: 18
    Last Post: 03-26-2006, 01:48 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •