[RLS] Markierung neu gedroppter Items

02/12/2016 10:43 zazadi#16
Nice release Yiv :D
02/12/2016 12:14 .K0rí#17
Quote:
Originally Posted by [GA]LeNnT View Post
Now my customers (how buy yet the system) can confirm that isn't exactly same of your. I do by myself my codes and I would want to ask, all the proof that you code them before me because the system was coded just after a my customer ask and I've all the proof to confirm when was coded. And I don't consider what you say because I know that I copy nobody codes. You're python part it's a copy of dragon soul functions.



You can't accuse me, just because I load the effects slot in a loop.

My one in __CreateSlotEnableEffect() isn't show the effect (that's already make a big difference, you can understand by yourself it isn't your).
btw thanks to .T4Ump
i have seen in "your" system:

Code:
// 1) Search: void CSlotWindow::__CreateSlotEnableEffect()
// 2) Change their function with:
void CSlotWindow::__CreateSlotEnableEffect()
{
	__DestroySlotEnableEffect();
#ifdef ENABLE_HIGHLIGHT_SYSTEM
	for (int i = 0; i < 3; ++i)
	{
		CAniImageBox* pEff = new CAniImageBox(NULL);
		for (int j = 0; j <= 12; ++j)
		{
			char buf[64+1];
			sprintf_s(buf, "d:/ymir work/ui/public/slotactiveeffect/slot%d/%02d.sub", (i+1), j);
			pEff->AppendImage(buf);
		}
		
		pEff->SetRenderingMode(CGraphicExpandedImageInstance::RENDERING_MODE_SCREEN);
		m_apSlotActiveEffect[i] = pEff;
	}
#else
	m_pSlotActiveEffect = new CAniImageBox(NULL);
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/00.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/01.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/02.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/03.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/04.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/05.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/06.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/07.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/08.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/09.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/10.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/11.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/12.sub");
	m_pSlotActiveEffect->SetRenderingMode(CGraphicExpandedImageInstance::RENDERING_MODE_SCREEN);
	m_pSlotActiveEffect->Show();
#endif
}
[Only registered and activated users can see links. Click Here To Register...]

Antispam:

Danke Daniel wie immer sehr Nice was du machst ;)
02/12/2016 13:37 .T4Ump#18

Hmm?
02/12/2016 16:08 [GA]LeNnT#19
Quote:
Originally Posted by .K0rí View Post
btw thanks to .T4Ump
i have seen in "your" system:

Code:
// 1) Search: void CSlotWindow::__CreateSlotEnableEffect()
// 2) Change their function with:
void CSlotWindow::__CreateSlotEnableEffect()
{
	__DestroySlotEnableEffect();
#ifdef ENABLE_HIGHLIGHT_SYSTEM
	for (int i = 0; i < 3; ++i)
	{
		CAniImageBox* pEff = new CAniImageBox(NULL);
		for (int j = 0; j <= 12; ++j)
		{
			char buf[64+1];
			sprintf_s(buf, "d:/ymir work/ui/public/slotactiveeffect/slot%d/%02d.sub", (i+1), j);
			pEff->AppendImage(buf);
		}
		
		pEff->SetRenderingMode(CGraphicExpandedImageInstance::RENDERING_MODE_SCREEN);
		m_apSlotActiveEffect[i] = pEff;
	}
#else
	m_pSlotActiveEffect = new CAniImageBox(NULL);
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/00.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/01.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/02.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/03.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/04.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/05.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/06.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/07.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/08.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/09.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/10.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/11.sub");
	m_pSlotActiveEffect->AppendImage("d:/ymir work/ui/public/slotactiveeffect/12.sub");
	m_pSlotActiveEffect->SetRenderingMode(CGraphicExpandedImageInstance::RENDERING_MODE_SCREEN);
	m_pSlotActiveEffect->Show();
#endif
}
[Only registered and activated users can see links. Click Here To Register...]

Antispam:

Danke Daniel wie immer sehr Nice was du machst ;)
You're stupid not me. First of all in their one, in this function he isn't show the effect. Isn't same of my system, maximum I can think, is he have done the loop same of me, not me same of him. He can't compare without get my system, so I think he's just trying to make me a bad reputation.

T4ump (it's an reseller, is the "dev" of a my customer with how I break any deal because their dev has resell my work)

The accusation come out just after lot of time after I code the system, so the datetime talk. You know, I can't steal something how don't exist yet, my systems was done for first on my topic and just after appear on others dev topics, facepalm.
02/12/2016 16:16 .T4Ump#20
Quote:
Originally Posted by [GA]LeNnT View Post
You're stupid not me. First of all in their one, in this function he isn't show the effect. Isn't same of my system, maximum I can think, is he have done the loop same of me, not me same of him. He can't compare without get my system, so I think he's just trying to make me a bad reputation.

T4ump (it's an reseller, is the "dev" of a my customer with how I break any deal because their dev has resell my work)

The accusation come out just after lot of time after I code the system, so the datetime talk. You know, I can't steal something how don't exist yet, my systems was done for first on my topic and just after appear on others dev topics, facepalm.
And can you tell me what kind of job? :)
As far as I know. We bought only weapon costume.

I never resell your fu**ing system. You have good system and i wanted to buy more system. But you accused me that im "reseller".
02/12/2016 16:22 [GA]LeNnT#21
Your "boss" has buy the slot effect system and after when he ask me to buy other as I don't want to make new deals because you resell my work, you start saying bullshits with the help of other people. What's is similar it's the loop of createslot (I don't know from where he have that). As I say the datetime talk. You share/sell my work to an guy from Romania how after start selling them too.

But nevermind I lose nothing but from now I will stay away selling new works to fuckin resellers like you. And I ask the proof of datetime he has do before me, still waiting for (same code I just want to see, I'm pretty sure he has do few modify to his system to seem similar to my one to can accuse).
02/12/2016 16:49 .T4Ump#22
Quote:
Originally Posted by [GA]LeNnT View Post
Your "boss" has buy the slot effect system and after when he ask me to buy other as I don't want to make new deals because you resell my work, you start saying bullshits with the help of other people. What's is similar it's the loop of createslot (I don't know from where he have that). As I say the datetime talk. You share/sell my work to an guy from Romania how after start selling them too.

But nevermind I lose nothing but from now I will stay away selling new works to fuckin resellers like you. And I ask the proof of datetime he has do before me, still waiting for (same code I just want to see, I'm pretty sure he has do few modify to his system to seem similar to my one to can accuse).
Heh, my "boss" bought from you Costume weapon and wanted Unlimited arrow. I bought slot effect from ken but it not worked. And your "slot effect" posted in group. Its all. We can still make deals i dont know why no. You have good systems i said in last post. And they are really helpful.

Sorry for english.
02/12/2016 16:51 [GA]LeNnT#23
That's not true, stop saying bullshit you pay for my system and all what I said it's true.
02/12/2016 17:05 .T4Ump#24
Quote:
Originally Posted by [GA]LeNnT View Post
That's not true, stop saying bullshit you pay for my system and all what I said it's true.
Okey, then.
02/12/2016 18:21 Yiv#25
In fact, I think I have enough people who can say, that I won't and didn't steal code.
Furthermore if I take a look at your code, I don't know if you were drunk or just don't really know how to code properly.

And yes, of course I got your code, because as I said, I saw that someone has my code in his client binary and I asked where he got it from. Now you can guess, what he said.

Also, I can accuse you for stealing my code because you exactly use the same variable names as me, you have the same buffer length and so on. In addition to that, it's coded by someone who knows at least a bit what he does but you don't (Just take a look at the rendering part. If you use if-statements, use it in else-if but you don't need them there at all).

Regards
02/12/2016 19:33 Syzen#26
Danke für die Hilfe und nice release :D
02/12/2016 22:03 BizzyMontana9090#27
erstmal vielen danke dafür kriege beim compilen den fehler

[Only registered and activated users can see links. Click Here To Register...]
02/12/2016 23:15 CloseSource#28
hmm.. i don't have errors or sysser just don't appear the slot effect and for some reason i have the same problem with the sash during of upgrade procedure(green effect don't show )
02/13/2016 00:11 Yiv#29
Quote:
Originally Posted by BizzyMontana9090 View Post
erstmal vielen danke dafür kriege beim compilen den fehler

[Only registered and activated users can see links. Click Here To Register...]
Du hast irgendwo was falsch kopiert :o

Quote:
Originally Posted by CloseSource View Post
hmm.. i don't have errors or sysser just don't appear the slot effect and for some reason i have the same problem with the sash during of upgrade procedure(green effect don't show )
Add some debug chats or something like that. It may collide with the highlighting of the sash system, you should check.

Regards
02/13/2016 09:25 CloseSource#30
Quote:
Originally Posted by Yiv View Post
Du hast irgendwo was falsch kopiert :o



Add some debug chats or something like that. It may collide with the highlighting of the sash system, you should check.

Regards
they are not collide cause highlighting of the sash system it didn't works not before and not now(never so far) sorry for my english