Thread Tools Display Modes
07/22/14, 10:15 AM   #21
esothomas
 
esothomas's Avatar
Join Date: Jun 2014
Posts: 24
people, please...

the bottom line is that the radar minimap addon was attacked (and it got contained). we don't need to attack each other too. right? right.

Last edited by esothomas : 07/22/14 at 10:32 AM.
  Reply With Quote
07/22/14, 11:39 AM   #22
Randactyl
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 251
Originally Posted by esothomas View Post
people, please...
...
we don't need to attack each other too. right? right.
Exactly. Thus thread was started as a question of where authors think the line should be drawn between borrowing an idea or plagiarizing code. This witch hunt is not only off topic in the thread, it's off topic for the entire sub-forum.

Cool your jets, and enjoy your day
  Reply With Quote
07/26/14, 06:52 PM   #23
deathangel1479
 
deathangel1479's Avatar
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 6
Goes on with zrmm...
Or I am paranoid?
I give two example...

1.
Abstract function, created by me. Its a bad result, but it works great for cyrodil links update...
That is one thing with a impossible chance, that two author make same...
RMM:
Lua Code:
  1. --Show Map Hidden
  2. function RMM.WorldMapUpdate()
  3.     ZO_WorldMap_UpdateMap()
  4.     ZO_WorldMap:SetAlpha(0)
  5.     ZO_WorldMap:SetHidden(false)
  6.     zo_callLater(RMM.WorldMapReset, 100)
  7. end
  8.  
  9. --Hide Map
  10. function RMM.WorldMapReset()
  11.     ZO_WorldMap:SetHidden(true)
  12.     ZO_WorldMap:SetAlpha(1)
  13. end
zrmm:
Lua Code:
  1. --------------------------------------------------
  2. -- WorlMap refresh
  3. --------------------------------------------------
  4. function MM_WorldMapRefresh()
  5.     ZO_WorldMap:SetAlpha(0)
  6.     ZO_WorldMap:SetHidden(false)
  7.     ZO_WorldMap_PanToPlayer()
  8.     zo_callLater(MM_WorldMapRefreshStop,20)
  9. end
  10.  
  11. function MM_WorldMapRefreshStop()
  12.     ZO_WorldMap:SetHidden(true)
  13.     ZO_WorldMap:SetAlpha(1)
  14. end
OK, its not the same, he changed a line and changed callLater value... :P

2.
zrmm now has tooltips, I added it two weeks ago(two days work to understand correctly, rebuild from worldmap and much testing).

True, some thinks you must do like worldmap, so there must be parallels, but so exactly same?

The worldmap build a list of tooltips when you hover more than one pins.
I dont do it, because to much work, single was ok for me...
WOW, what a coincidence, same for zrmm author...



What he thinking?
That I code new features for him?
"I can concentrate on stable and performans and all other I get from other addons." Or what?

I got the result for nearly no fps drop(much better as worldmap itself), but I wont build it, because it is real much work and I am sure, other will be copy it then...

Last edited by deathangel1479 : 07/26/14 at 07:05 PM.
  Reply With Quote
07/27/14, 10:47 PM   #24
Sasky
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 231
Yes, it does look very similar. However, this isn't something that should be aired in the forums unless the ESOUI admins are completely unresponsive.

1. Contact the author directly for him to remove the code or add credit.
2. If that doesn't go well, contact one of the admins - PM or using the Report File option. Note sections to make your point and indicate any results from (1).
3. If you don't get a response or appropriate action from the admins, then consider airing in the forums.

#1 and #2 can get something done about it. #3 cannot, unless the author or an admin review the thread, in which case #1 or #2 would've gotten you directly there.
  Reply With Quote
07/27/14, 11:23 PM   #25
Cairenn
Credendo Vides
 
Cairenn's Avatar
Premium Member
WoWInterface Admin
Join Date: Mar 2004
Posts: 437
Originally Posted by Sasky View Post
Yes, it does look very similar. However, this isn't something that should be aired in the forums unless the ESOUI admins are completely unresponsive.

1. Contact the author directly for him to remove the code or add credit.
2. If that doesn't go well, contact one of the admins - PM or using the Report File option. Note sections to make your point and indicate any results from (1).
3. If you don't get a response or appropriate action from the admins, then consider airing in the forums.

#1 and #2 can get something done about it. #3 cannot, unless the author or an admin review the thread, in which case #1 or #2 would've gotten you directly there.
This. A thousand times, this.
  Reply With Quote

ESOUI » Developer Discussions » General Authoring Discussion » "borrowing" code snippets


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off