Quote:
Originally Posted by RENgOLD
Your mod actually based on my mod, with the addition of few minor features. As a result your project is ~80% of my work, if not more.
|
Oh how I have waited for this day to clash with you :)
Your work you say?
Code:
local newPriceStr = bidPrice * 1.01
Fix that, its wrong and stupid.
Code:
function CheckLeftTime(leftSec)
local hours_1 = 60
local timeWarning = false
local leftMin = math.floor(leftSec / hours_1)
local leftTimeStr
--[[--<-RENgOLD
if hours_1 < leftMin then
if leftMin % hours_1 > 0 then
leftTimeStr = string.format("%d%s", math.floor(leftMin / hours_1) + 1, locale.auction.under_time)
else
leftTimeStr = string.format("%d%s", math.floor(leftMin / hours_1), locale.auction.under_time)
end
elseif leftMin == 0 then
leftTimeStr = string.format("%s", locale.server.timeBelowOneMinute)
timeWarning = true
else
leftTimeStr = string.format("%d%s", leftMin, locale.tooltip.minute)
--]]
local leftSecF
local leftMinF
if leftSec % 60 < 10 then
leftSecF = string.format("0" .. leftSec % 60)
else
leftSecF = string.format(leftSec % 60)
end
if leftMin % 60 < 10 then
leftMinF = string.format("0" .. leftMin % 60)
else
leftMinF = string.format(leftMin % 60)
end
if leftMin >= hours_1 then
leftTimeStr = string.format("%d:" .. "%s:" .. "%s", leftSec / 3600, leftMinF, leftSecF)
elseif leftMin == 0 then
leftTimeStr = string.format("%d", leftSec)
timeWarning = true
else
leftTimeStr = string.format("%d:" .. "%s", leftMin, leftSecF)
-->-RENgOLD
timeWarning = true
end
return leftTimeStr, timeWarning
end
What in the hell is this mess, seriously? Let me show you something..
Code:
function CheckLeftTime(leftSec)
local hours_1 = 60
local timeWarning = false
local leftMin = math.floor(leftSec / hours_1)
local leftTimeStr
local h = math.floor(leftMin / 60)
local m = leftMin % 60
local s = leftSec % 60
leftTimeStr = string.format("%02d:%02d:%02d", h, m, s)
if h == 0 and m <= 30 then
timeWarning = true
end
return leftTimeStr, timeWarning
end
That was difficult.
Quote:
|
Oh, and here you erased my nickname from the comments, but you forgot to rename my variable "renglobalnpc":
|
That was left to test, actually, did you even tell people they could get npc id's from
[Only registered and activated users can see links. Click Here To Register...] and that is actually how the auction house anywhere works? Too bad I was smart enough not to upload it yet patch and launcher prior ;)
Code:
targetNpcIndex = 13389
Quote:
|
There is thread about old version of my mod, with description of features:
|
Did you not link the threads about the 2 other individuals who posted prior to you about there versions and how they aswell got ripped into your 'mod' and you just created a package out of it and even in your thread you stating 'if its good ill add it' to the people who were trying to contribute then you decided to start selling it? Didn't think so.
Quote:
|
How many words... BTW, how about infinite glide time, hotkeys, autobuy in few days?
|
What is the point of auto buy now when the market is shot? Glide time gets you banned now, as does XY teleporting, if you didn't even know, and hotkeys have been in the mod for some time now.
Quote:
|
P.S. Your "proper launcher" is awful. Learn something about relative paths lol.
|
Are you using something old/outdated/quickly slapped together? You have 4 batch files, an I mean seriously..
[Only registered and activated users can see links. Click Here To Register...] at this, its awful, seriously awful.
Russians, jeesh. Do I really need to make a longer post an take you apart more? Or you wanna go pay me on paypal some more for what I've already been working on like you already have? Just checking ;)
Quote:
|
even if you do you can only stay online for 10min or so with the annoying process we have to do everytime we need to mod...
|
I've been logged in for over 3 days now and not disconnected, not sure what your problem is :)