If someone say how to upload to this three charts at the same time
World Charts:
uploadurl = http://fretsonfire.sourceforge.net/play
Divra's Charts:
Without star power:
uploadurl = http://www.wembley1967.com/chart/nosp/guitar/upload.php
Guitar/Bass/Drums with star power:
uploadurl = http://www.wembley1967.com/chart/uploadsp.php
raph's score charts:
* uploadurl = http://www.phonotheque.ca/chart/play.php
Upload score - Multiple score send chart with alarin
Forum rules
- Before posting in this section please make sure your question has not already been answered:
- Read the FAQs and stickied topics. In particular: /******READ THIS POST BEFORE POSTING IN THIS SECTION!******\
- Visit the Wiki: http://fretsonfire.wikidot.com/
- Please try to search the forums before posting
- Questions about FoFiX?
- For general help, visit the project's Wiki: http://code.google.com/p/fofix/w/list
- Problem running FoFiX from git? Ask ALL your questions in the FoFiX forum
This topic is 16 years and 9 months old. Instead of replying, please begin a new topic, or search for another related topic that may be more suitable.
- Azzco
- Member
- Posts: 1308
- Joined: August 15th, 2007
- Location: Trelleborg, Scania, Sweden
- Reputation: 0
- Contact:
3 board? do you mean 3 boards or free board? (Write in english please...)
I guess you meant 3 boards.
Anyways you're just trying to advertise the chart locations? raph allready did that, check the high score discussion section.
Could you please just read through the post before you hit the Quick Post button? I don't recall a file called fretonfire.ini at all. :S
I guess you meant 3 boards.
Anyways you're just trying to advertise the chart locations? raph allready did that, check the high score discussion section.
Could you please just read through the post before you hit the Quick Post button? I don't recall a file called fretonfire.ini at all. :S

(k)Ubuntu 8.10 skyscraper 2.6.27-11-generic i686 GNU/Linux KDE 4.2.0
It's not like I dislike sleeping, I really do like it to be honest. It's the whole wake up/go to sleep business I don't like.
not a robot
- raph666
- Administrator
- Posts: 2428
- Joined: March 9th, 2007
- Location: dans la mer du nord
- Reputation: 20
- Contact:
See this post: https://www.fretsonfire.org/cgi-bin....ry61953
Alarian runs on source so you can easily edit the file (GameResultsScene.py) yourself. The uploadscore code is fairly the same in Alarian. I think Divra refined his method later but I have more than tested the first "copy paste" method and it works good enough.
Don't forget to edit your fretsonfire.ini (note that these URLs are old and don't work anymore):
Divra wrote:It's all copying
FromCode: Select all
fn = lambda: self.song.info.uploadHighscores(self.engine.config.get("game", "uploadurl"), self.song.getHash())
self.engine.resource.load(self, "uploadResult", fn)
ToCode: Select all
fn = lambda: self.song.info.uploadHighscores(self.engine.config.get("game", "uploadurl"), self.song.getHash())
self.engine.resource.load(self, "uploadResult", fn)
fn2 = lambda: self.song.info.uploadHighscores(self.engine.config.get("game", "uploadurl2"), self.song.getHash())
self.engine.resource.load(self, "uploadResult", fn2)
fn3 = lambda: self.song.info.uploadHighscores(self.engine.config.get("game", "uploadurl3"), self.song.getHash())
self.engine.resource.load(self, "uploadResult", fn3)
Alarian runs on source so you can easily edit the file (GameResultsScene.py) yourself. The uploadscore code is fairly the same in Alarian. I think Divra refined his method later but I have more than tested the first "copy paste" method and it works good enough.
Don't forget to edit your fretsonfire.ini (note that these URLs are old and don't work anymore):
Divra wrote:add the URLs in fretsonfire.ini.
This is what I use, it uploads to the official chart, 'our chart' and mine:Code: Select all
uploadurl = http://fretsonfire.sourceforge.net/play
uploadurl2 = http://charts.fretsonfire.net/fretsonfire/play
uploadurl3 = http://chart.gamingrecon.com/upload.php
Last edited by raph666 on Sun Aug 31, 2008 3:14 pm, edited 1 time in total.
Solution:
add in GameEngine.py (inside library.zip)
Config.define("game", "uploadurl_starpower", str, "http://www.wembley1967.com/chart/uploadsp.php")
Config.define("game", "uploadurl2", str, "http://www.phonotheque.ca/chart/play.php")
add in GameResultsscene.py (inside library.zip)
fn = lambda: self.song.info.uploadHighscores(self.engine.config.get("game", "uploadurl_starpower"), self.song.getHash(), part = player.part)
fn2 = lambda: self.song.info.uploadHighscores(self.engine.config.get("game", "uploadurl2"), self.song.getHash(), part = player.part)
self.engine.resource.load(self, "uploadResult", fn)
self.engine.resource.load(self, "uploadResult", fn2)
add in GameEngine.py (inside library.zip)
Config.define("game", "uploadurl_starpower", str, "http://www.wembley1967.com/chart/uploadsp.php")
Config.define("game", "uploadurl2", str, "http://www.phonotheque.ca/chart/play.php")
add in GameResultsscene.py (inside library.zip)
fn = lambda: self.song.info.uploadHighscores(self.engine.config.get("game", "uploadurl_starpower"), self.song.getHash(), part = player.part)
fn2 = lambda: self.song.info.uploadHighscores(self.engine.config.get("game", "uploadurl2"), self.song.getHash(), part = player.part)
self.engine.resource.load(self, "uploadResult", fn)
self.engine.resource.load(self, "uploadResult", fn2)
Last edited by kevinncw on Mon Sep 01, 2008 12:55 am, edited 1 time in total.
Who is online
Users browsing this forum: No registered users and 28 guests