Log in

View Full Version : Playershops?



kgolfer
02-08-2011, 09:34 AM
Any idea if/when inventory in playershops will be updated....or is it dead?

Wharde
02-08-2011, 10:41 AM
http://www.virilneus.com/shops/ftp/status.php

Ardy
02-08-2011, 10:55 AM
If you are talking about Lich playershops 3.2 it gets updated by players. You can download the script citizendata off the repository and run it for specific towns and it will update.

Just be prepared to have your character locked up for 60 minutes or more depending on what town

kgolfer
02-08-2011, 11:00 AM
Nevermind, got it.

kgolfer
02-08-2011, 11:04 AM
Updating Ta'Illistim. I will do FWI later.....

Ryvicke
02-08-2011, 11:53 AM
I happened to just do FWI this morning. Doing RR now.

kgolfer
02-08-2011, 11:55 AM
TI done.

I would be willing to frequently run this script. I would also be willing to run a script that was similar to this one, but would start at a spot and do all of MAINLAND (-Teras) Elanthia at once (travel from town to town all at once).

Anyone willing to bite off on doing this script?

AMUSED1
02-08-2011, 12:02 PM
If you're running a script to check all the towns, please please do it with a character that has at least 24 ranks of Arcane Symbols so any scroll in shops will show up with what spells are on them.

kgolfer
02-08-2011, 12:04 PM
I have such a character, just don't have the knowledge on how to change the script to travel to each city.

Ryvicke
02-08-2011, 12:08 PM
Running ;citizendata automatically detects your town and goes to the shop area. You could write a very simple script that just brings you from one end of the world to the other and activates ;citizendata when you're in the limits of each town. Of course that would cost 2,000 silvers over the dragonspine each way and, depending on level and citizenship, tons more to get to RR and back.

kgolfer
02-08-2011, 12:09 PM
Maybe I will just do something simple to cover the Elven Nation side.

Alorn15
02-08-2011, 12:57 PM
That script sucks!

kgolfer
02-08-2011, 01:05 PM
Make a better one then!

kookiegod
02-08-2011, 02:10 PM
Doing sol now, i'll do the landing after...

DaCapn
02-08-2011, 02:21 PM
Here is a quick and dirty wrapper for citizendata that will do multiple towns. Timestamps and all that. Should be pretty self explanatory. I'll put it on the repo later. Maybe tighten it up so it's easier to change the list of towns. If anyone has a good notion for making that easy for people, please share.



# Shop room list
# ------------------------
# Wehnimer's Landing : 367
# Four Winds Isle : 3869
# Ta'Vaalor : 10452
# Icemule Trace : 2374
# Teras Isle : 1975
# Ta'Illistim : 731
# Solhaven : 9009
# River's Rest : 10873
# Zul Logoth : 9424

# List of towns and rooms in the above order
townlist = ["Wehnimer's Landing", "Four Winds Isle", "Ta'Vaalor", "Icemule Trace", "Teras Isle", "Ta'Illistim", "Solhaven", "River's Rest", "Zul Logoth"]
roomlist = [367, 3869, 10452, 2374, 1975, 731, 9009, 10873, 9424]

echo "STARTED : #{Time.now}"

# Iterate over rooms in above array
roomlist.each { |room|

start_script "go2", ["getsilvers=on","#{room}"]
wait_until { !running? "go2" }; pause 2

tstart=Time.now
start_script "citizendata"
wait_until { !running? "citizendata" }; pause 2

# Note that roomlist and townlist are linked in order and size
# If you don't care about this timestamp, you can delete this line and the townlist
echo "Completed #{townlist[roomlist.index(room)]} in #{(Time.now-tstart)/60} min"

}

echo "FINISHED : #{Time.now}"

kgolfer
02-08-2011, 02:24 PM
Ta'Vaalor done.

I will edit the above script to take care of the elven nation area, Zul, and FWI so I can keep those updated.

Ryvicke
02-08-2011, 02:56 PM
I have no problems doing RR a few times a week. If no one else is hitting the landing/ice/sol regularly I could do those as well.

kookiegod
02-08-2011, 03:15 PM
Landing, IMT, and Solhaven done

crb
02-08-2011, 03:42 PM
hurray

kgolfer
02-08-2011, 04:16 PM
I'll get Zul updated also.

kgolfer
02-08-2011, 07:49 PM
Who is going to update Teras?

I can do it if no one else can.

kgolfer
02-08-2011, 09:10 PM
Teras done.

Zul on the way, will be done soon.