Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > ArcheAge
You last visited: Today at 15:31

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Auction House Addon/Modd

Discussion on Auction House Addon/Modd within the ArcheAge forum part of the MMORPGs category.

Reply
 
Old 10/18/2014, 14:53   #46
 
elite*gold: 0
Join Date: Jun 2008
Posts: 87
Received Thanks: 23
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 .
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"
selmo is offline  
Old 10/18/2014, 23:42   #47
 
elite*gold: 0
Join Date: Jan 2006
Posts: 37
Received Thanks: 18
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
FireFly91 is offline  
Old 10/18/2014, 23:55   #48
 
elite*gold: 0
Join Date: Dec 2007
Posts: 1
Received Thanks: 0
help

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
dontpanic is offline  
Old 10/19/2014, 02:06   #49
 
elite*gold: 0
Join Date: Jun 2008
Posts: 87
Received Thanks: 23
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
selmo is offline  
Old 10/19/2014, 10:10   #50
 
elite*gold: 0
Join Date: Sep 2012
Posts: 6
Received Thanks: 1
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!
EunByuL is offline  
Old 10/19/2014, 14:00   #51
 
elite*gold: 0
Join Date: Jun 2008
Posts: 87
Received Thanks: 23
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
selmo is offline  
Old 10/19/2014, 23:32   #52
 
elite*gold: 0
Join Date: Oct 2014
Posts: 4
Received Thanks: 0
anyone of you know how to open the .dds files?
arides10 is offline  
Old 10/20/2014, 10:25   #53
 
elite*gold: 0
Join Date: Jun 2008
Posts: 87
Received Thanks: 23
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.
selmo is offline  
Old 10/20/2014, 17:19   #54
 
elite*gold: 0
Join Date: Apr 2009
Posts: 17
Received Thanks: 0
make sure you backup a copy before doing this.

sometimes the update screws up the pak >_>
happen once to me.
darkcow is offline  
Old 10/20/2014, 22:20   #55
 
elite*gold: 0
Join Date: Mar 2013
Posts: 2
Received Thanks: 0
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
jpl_dias is offline  
Old 10/21/2014, 14:13   #56
 
elite*gold: 0
Join Date: Jun 2008
Posts: 87
Received Thanks: 23
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
selmo is offline  
Old 10/21/2014, 15:53   #57
 
elite*gold: 0
Join Date: Apr 2012
Posts: 1
Received Thanks: 0
Selmo can you add me at skype? i need fast answers and i will not take your time gabrieldmn
gabrieldmn is offline  
Old 10/21/2014, 16:23   #58
 
elite*gold: 0
Join Date: Nov 2009
Posts: 9
Received Thanks: 1
Is there a way to skip the confirmation screen when u are buying something in AH?
piperita is offline  
Old 10/21/2014, 17:33   #59
 
elite*gold: 0
Join Date: Oct 2014
Posts: 36
Received Thanks: 4
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?
msfrek is offline  
Old 10/22/2014, 09:06   #60
 
elite*gold: 0
Join Date: Jun 2008
Posts: 87
Received Thanks: 23
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.
selmo is offline  
Reply


Similar Threads Similar Threads
Auction House Addon/Mod
06/26/2015 - ArcheAge - 227 Replies
I saw a Pic with a Auction House Addon/Mod/Hack that shows the exact time not just Minutes. http://i.imgur.com/x8ywCpZ.jpg So anyone knows sth about it ? First Step is a HackShild Bypass, i cant even launch Cheatengin.
help me for auction house bug fix
07/10/2011 - Rappelz - 1 Replies
help me
Auction House
06/18/2011 - Shaiya Private Server - 2 Replies
Hey all, Been a long time since I been deving in Shaiya do to real life circumstances. I'm trying to get bk into to see how the progress has come thus far. I'm tinkering around on my test server and everything in Auction House is disappearing. I tried searching for information on this, but, it doesn't seem to show anything. Prof once told/gave me the fix, But for the life of me I can't remember it what it was... Brain fart I guess lol. Anyone willing to help me out here? Thanks in...



All times are GMT +1. The time now is 15:33.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.