summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-12-21Readd Halloween prizesJared Adams1-1/+11
These were somehow lost in the merge.
2010-12-21Redisable Halloween 2010Jared Adams1-1/+1
2010-12-20End Hallowe'en 2010Freeyorp1-32/+32
2010-12-20Work around a typoFreeyorp1-3/+35
2010-12-20Hallowe'en 2010 Phase 2 Server DataFreeyorp4-5/+832
2010-12-20Fix check in gak and also tongue drop rates.E Athena Server2-4/+4
2010-12-20Quickly fix halloween npc idE Athena Server1-1/+1
2010-12-20Quickly fix error in halloween npcE Athena Server1-1/+1
2010-12-20Quickly fix news dateE Athena Server1-1/+1
2010-12-20Hallowe'en 2010 Phase 1 Server DataEnchilado22-282/+771
Some new items, a new monster, temporary spawns for that monster, the event NPC, scripts.conf to make him appear, and a new news entry.
2010-12-20Sync newsE Athena Server1-0/+91
2010-12-20Properly escape versionsE Athena Server1-2/+2
2010-12-19Merge branch 'master' of ↵Stefan Beller1-55/+55
gitorious.org:~wombat/tmw-eathena-data/wombat-contribution
2010-12-19commented the debug part for the questJessica Tölke1-55/+55
2010-12-19fixing the _mobs scriptStefan Beller1-37/+35
2010-12-18Xmas fixestoni3-53/+18
2010-12-18Add white box and minor changes.toni2-3/+6
2010-12-18Changes to xmas 2010.toni4-185/+541
2010-12-18Updating some wlk-files for snowlandStefan Dombrowski3-0/+0
2010-12-18edit out NPCs that need fixing and added some fixesWombat5-12/+12
edited out krickkrackrock, rockscissor, baktar golbenez and santa language clean up and small fixes.
2010-12-17removed a line in golbanez, which tells you the worth of your presentJessica Tölke1-1/+1
we don't want to ruin the surprise, do we?
2010-12-17fixed a line in reward calculationJessica Tölke1-1/+1
2010-12-16Warp Changes to get between Hurnscald and Nivalis, Orum Quest on stand-byWombat7-23/+62
Diryn offers warp to Nivalis, Frozenbeard to Hurnscald, Taro edited out Warp changes also to prevent players from interacting with Orum Quest until the quest is finished.
2010-12-16minor fix to orum.txtWombat1-1/+1
close instead of next on orum.txt to fix a bug
2010-12-16golbanez fixStefan Beller1-2/+4
2010-12-16nivalisStefan Beller4-86/+13
2010-12-16nivalisStefan Beller9-559/+570
2010-12-16nivalisStefan Beller6-9/+24
2010-12-15minor npc fixes nivalisStefan Beller3-6/+12
2010-12-11added candle helmet to item_db and orum rewardWombat2-6/+6
added the candle helmet as a reward for the orum quest and to the item.db.txt
2010-12-09mobs added to winter land and winter monsters to mob_db.txtWombat8-12/+107
mobs added to new Kaizei maps. Yeti and Ice Element added to mob_db.txt
2010-12-07Merge remote branch 'master/master'Wombat3-3/+26
2010-12-05new npc in nivalisStefan Beller8-91/+260
removed mapflags tested baktar KrickKrackKrock Criker Miler and the well shop does not sell forest bow but a desertbow
2010-12-04Fix grammar on the new daily, non-critical updateChuck Miller1-2/+2
2010-12-04Errr... wrong settings in the last patchChuck Miller1-3/+3
2010-12-04Add a new daily aimed for people around level 40Chuck Miller2-0/+23
2010-12-02fixups in nivalisStefan Beller4-4/+7
2010-12-02adding KrickKrackKrock a gambling manStefan Beller2-0/+138
2010-12-02adding nivalis packrat: baktarStefan Beller8-56/+427
a strange person additionally: remove taro and startrek from nivalis
2010-11-21nivalis and christmas2010Stefan Beller33-3/+790
2010-11-08adding constants to const.txt for byte maskingStefan Beller1-0/+12
adding the constants to have the avalability to mask and shift bytes within a script variable
2010-11-07Fixing return in banker scriptStefan Dombrowski1-3/+3
Also renaming menu option to "Nevermind" if it results to goto L_Nev. Reviewed-by: PjotrOrial
2010-11-07corrected the mob_dbStefan Beller1-7/+4
2010-11-07Voltain a dark mageStefan Beller2-0/+364
an evil mage trying to poison mouboos in 007-1 (south of Hurnscald) This is not a player attached quest-row, but an npc attached quest-row
2010-11-07 db/mob_db.txt~meways1-3/+7
2010-11-07m.def removed from terranite equipmentWombat1-3/+3
magic defense removed from terranite helmet, chest and leg armor
2010-11-07warningsigns at pvp entrance 012-4Stefan Beller3-0/+19
2010-11-07added warics bed in collision layer in 009-4Stefan Beller1-0/+0
2010-11-07better bounds checking + comments in orumStefan Beller5-50/+53
2010-11-07fixed minor bugs in orum/waricStefan Beller4-68/+116
* instead of "Intensity out of range" you die now. * spelling, only typos, no grammar corrected, since their grammar is weird. * header added to orum file. Not done: The bound checking is not corrected yet: Instead of : if (@offsetOne > 12) set @offsetOne, 1; if (@offsetOne < 1) set @offsetOne, 12; you should do: if (@offsetOne > 12) set @offsetOne, @offsetOne - 12; if (@offsetOne < 1) set @offsetOne, @offsetOne + 12; This can handle with steps bigger than 1. Collision layer of the bed in the empty cave must be fixed. Should there be hints how to setup the torches anyway?