Auction House Addon/Modd

10/18/2014 14:53 selmo#46
Quote:
Originally Posted by marine608 View Post
Nice and easy!... Thank you very much. I got zoom mod working too, but when I tried housing code posted on here, it didn't work for me...

Anyways, will be having fun with this :D.
Welcome,
I try to help others as others one day helped me and in the future we dont know, mabe someday one of you might also do something for me or another.

"This is Ninja way"
10/18/2014 23:42 FireFly91#47
Quote:
Originally Posted by selmo View Post
Fly is it out there the code to see the autcioneer biding?
You mean who is bidding currently?

Common.lua, "CreateItemBiddingState" function

Code:
function CreateItemBiddingState(subItem)
  local textbox = subItem:CreateChildWidget("textbox", "textbox", 0, true)
  textbox:AddAnchor("TOPLEFT", subItem, 5, 0)
  textbox:AddAnchor("BOTTOMRIGHT", subItem, -5, 0)
  textbox:SetLineSpace(3)
  subItem.textbox = textbox
  function subItem:SetValues(itemInfo)
    local bidder = tostring(itemInfo.bidder)
    local seller = tostring(itemInfo.seller)
    local myName = X2Unit:UnitName("player")
    local curWorldId = X2:GetCurrentWorldId()
    local str = ""
    str = string.format("%s %s\n|r", FONT_COLOR_HEX.DEFAULT, seller)
    if bidder == "" then
      str = str .. locale.auction.notBid
      ApplyTextColor(textbox, FONT_COLOR.GRAY)
    elseif bidder == myName and curWorldId == itemInfo.bidWorldId then
      str = str .. locale.auction.myselfBid
      ApplyTextColor(textbox, FONT_COLOR.GREEN)
    else
      str = str .. bidder
      ApplyTextColor(textbox, FONT_COLOR.BLUE)
    end
    subItem.textbox:SetText(str)
  end
end
shows the seller in the top row and the highest bidder(if available) in the bottom row of each auction
10/18/2014 23:55 dontpanic#48
pls help, after i put Java -jar unluac.jar common.alb > common.lua in CMD it said access denied, what did i do wrong.
My common.alb size is 25kb and unluac.jar is 242kb which is in c:/users
help pls
10/19/2014 02:06 selmo#49
Quote:
Originally Posted by FireFly91 View Post
You mean who is bidding currently?

Common.lua, "CreateItemBiddingState" function

Code:
function CreateItemBiddingState(subItem)
  local textbox = subItem:CreateChildWidget("textbox", "textbox", 0, true)
  textbox:AddAnchor("TOPLEFT", subItem, 5, 0)
  textbox:AddAnchor("BOTTOMRIGHT", subItem, -5, 0)
  textbox:SetLineSpace(3)
  subItem.textbox = textbox
  function subItem:SetValues(itemInfo)
    local bidder = tostring(itemInfo.bidder)
    local seller = tostring(itemInfo.seller)
    local myName = X2Unit:UnitName("player")
    local curWorldId = X2:GetCurrentWorldId()
    local str = ""
    str = string.format("%s %s\n|r", FONT_COLOR_HEX.DEFAULT, seller)
    if bidder == "" then
      str = str .. locale.auction.notBid
      ApplyTextColor(textbox, FONT_COLOR.GRAY)
    elseif bidder == myName and curWorldId == itemInfo.bidWorldId then
      str = str .. locale.auction.myselfBid
      ApplyTextColor(textbox, FONT_COLOR.GREEN)
    else
      str = str .. bidder
      ApplyTextColor(textbox, FONT_COLOR.BLUE)
    end
    subItem.textbox:SetText(str)
  end
end
shows the seller in the top row and the highest bidder(if available) in the bottom row of each auction
Ya i got it working also, dont know if anyone else wants it tho
10/19/2014 10:10 EunByuL#50
Quote:
Originally Posted by selmo View Post
Ya i got it working also, dont know if anyone else wants it tho
I would love that!

Also do you know if it's possible to have the Auction House automatically update every second or so? So you can keep track of your bids easier?

On this guy's stream (you probably know who I'm talking about) he also had a mod to make Ctrl+Mouse Click instantly make a bid, just higher than the previous bid, and Alt+Mouse Click make you buyout. No secondary "are you sure?" pop-ups.

Anyways, thanks for sharing this mod. I'm loving it already!
10/19/2014 14:00 selmo#51
Quote:
Originally Posted by EunByuL View Post
I would love that!

Also do you know if it's possible to have the Auction House automatically update every second or so? So you can keep track of your bids easier?

On this guy's stream (you probably know who I'm talking about) he also had a mod to make Ctrl+Mouse Click instantly make a bid, just higher than the previous bid, and Alt+Mouse Click make you buyout. No secondary "are you sure?" pop-ups.

Anyways, thanks for sharing this mod. I'm loving it already!
Hi,
please say thanks in the 1st post, if you already done it, thanks

"Also do you know if it's possible to have the Auction House automatically update every second or so? So you can keep track of your bids easier?"
yes, it can be possible made, like refresh every 3sec or so, but the thing is on your searchs it would auto refresh also, could be hard to search for stuff when its always auto refreshing.
Mabe can be possible to create an auto toggle , when you want auto refresh or not.
Or just make the alread refresh a auto refresh toggle.
Need to be worked on

"On this guy's stream (you probably know who I'm talking about) he also had a mod to make Ctrl+Mouse Click instantly make a bid, just higher than the previous bid, and Alt+Mouse Click make you buyout. No secondary "are you sure?" pop-ups.
The auto bidder i think its a bot, not a mod.
Mabe we can create a input of maximum bid then when someone bid if it is below of our maximum bid it would auto bid the next lvl biding.
Since this is only script wise, this can be possible.
(Alot of work code tho, so dont expect this soon)

Thanks for the complement
Any contributions mostly appreciated
10/19/2014 23:32 arides10#52
anyone of you know how to open the .dds files?
10/20/2014 10:25 selmo#53
Quote:
Originally Posted by arides10 View Post
anyone of you know how to open the .dds files?
.dds can be open in unreal but 1st need to be unpacked.
I did this couple years ago for Lineage 2 files.

Dont remenber correctly the procedure.
10/20/2014 17:19 darkcow#54
make sure you backup a copy before doing this.

sometimes the update screws up the pak >_>
happen once to me.
10/20/2014 22:20 jpl_dias#55
hi can you put a video how to do it because i change the file that you put in to download but it still give me the same file when i see if it changed its like the game file is protected anti change our problebly im doing something wrong

and the java part it doent let me do it it say that the jar file its incorect .... when i log in game i cant see any change
10/21/2014 14:13 selmo#56
Quote:
Originally Posted by jpl_dias View Post
hi can you put a video how to do it because i change the file that you put in to download but it still give me the same file when i see if it changed its like the game file is protected anti change our problebly im doing something wrong

and the java part it doent let me do it it say that the jar file its incorect .... when i log in game i cant see any change
Just run the tutorial step by step dont skip stages and it will work for sure.
Just read carefully and do it slowly, dont try to rush something otherwise you gona screw it.

And always have a backup of game_pak
10/21/2014 15:53 gabrieldmn#57
Selmo can you add me at skype? i need fast answers and i will not take your time gabrieldmn
10/21/2014 16:23 piperita#58
Is there a way to skip the confirmation screen when u are buying something in AH?
10/21/2014 17:33 msfrek#59
plz help me,I 'm stuck at the point 11
11 - open cmd and copy past this command
Java -jar unluac.jar common.alb > common.lua

"java not find" in cmd,,solution?
10/22/2014 09:06 selmo#60
Quote:
Originally Posted by msfrek View Post
plz help me,I 'm stuck at the point 11
11 - open cmd and copy past this command
Java -jar unluac.jar common.alb > common.lua

"java not find" in cmd,,solution?
Folow to tutorial step by step.
You need the unluac.jar in the same folder as the common.
Plus install java ofc.

The tutorial has the file already edited.