User talk:Kymara: Difference between revisions

Jump to navigation Jump to search
Content deleted Content added
imported>Kymara
imported>Kymara
Line 248: Line 248:
Okay, looks like I should have done this first:
Okay, looks like I should have done this first:
Please install msysgit 1.6.1 or above before install tortoisegit http://code.google.com/p/msysgit
Please install msysgit 1.6.1 or above before install tortoisegit http://code.google.com/p/msysgit

== For building achievements to list at [[Stendhal Achievements]] ==

They still need a bit of categorisation for the page though:
<source lang = "sql">
select distinct
concat('{{',
concat_ws('|',
'Achievement',
concat('title=',title),
concat('description=',description),
concat('difficulty=',(case base_score when 10 then 'easy' when 50 then 'medium' when 1000 then 'hard' else 'todo' end))),
'}}')
from testserver.achievement
order by category, identifier;
</source>