diff --git a/priv/quests/0/quest.conf b/priv/quests/0/quest.conf new file mode 100644 index 0000000..a59b5c1 --- /dev/null +++ b/priv/quests/0/quest.conf @@ -0,0 +1,48 @@ +%% This file is part of EGS. +%% +%% EGS is free software: you can redistribute it and/or modify +%% it under the terms of the GNU Affero General Public License as +%% published by the Free Software Foundation, either version 3 of the +%% License, or (at your option) any later version. +%% +%% EGS is distributed in the hope that it will be useful, +%% but WITHOUT ANY WARRANTY; without even the implied warranty of +%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +%% GNU Affero General Public License for more details. +%% +%% You should have received a copy of the GNU Affero General Public License +%% along with EGS. If not, see . + +%% Counters. + +{questid, 16#7fffffff}. + +%% @doc The counters don't need unit_title* files. +{notitles, true}. + +%% @todo Default to {1, 6} if missing? +{party_size, {1, 6}}. + +%% @todo Those should probably default to those values if unspecified (lobbies). +{cursor, {0, 0}}. +{icon, 65535}. + +%% @todo Default enemy_level to 1 if unspecified (lobbies). +{zones, [ + [{zoneid, 0}, {areaid, 0}, {enemy_level, 1}, {sets, []}, {maps, []}] +]}. + +{temp_flags, []}. +{value_flags, []}. +{bool_flags, []}. + +{items, []}. + +%% @todo if is questid then defaults to ffffffff. +%% @todo Default to full ffff if missing. +{enter_warp, {16#7fffffff, 24, 0, 1}}. +{exit_warp, {16#7fffffff, 65535, 65535, 65535}}. +{fail_warp, {16#7fffffff, 65535, 65535, 65535}}. + +%% @doc Current -> next. Values are the area and the exit/entrance entryid. +{warps, []}. diff --git a/priv/quests/README b/priv/quests/README index 1bfab75..0abd3f5 100644 --- a/priv/quests/README +++ b/priv/quests/README @@ -1,5 +1,7 @@ List of quests: +0 Counters + 1100000 GUARDIANS Colony lobbies 1101000 Parum lobbies 1102000 Neudaiz lobbies diff --git a/src/egs_game.erl b/src/egs_game.erl index 48e8d9a..d852367 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -261,7 +261,7 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}, State=#sta FromArea = {psu_area, OldArea#psu_area.questid, FromZoneID, FromMapID}, User = OldUser#egs_user_model{areatype=counter, area={psu_area, 16#7fffffff, 0, 0}, entryid=0, prev_area=FromArea, prev_entryid=FromEntryID}, egs_user_model:write(User), - {ok, QuestData} = file:read_file("data/lobby/counter.quest.nbl"), + QuestData = egs_quests_db:quest(0), ZoneFile = "data/lobby/counter.zone.nbl", %% broadcast unspawn to other people {ok, UnspawnList} = egs_user_model:select({neighbors, OldUser}), diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 7bd1606..f154034 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1517,6 +1517,7 @@ send_1006(EventID, PartyPos, #state{socket=Socket, gid=DestGID}) -> %% @todo Handle PartyPos. %% @todo Receive the AreaName as UCS2 directly to allow for color codes and the like. %% @todo Handle TargetLID probably (right after the padding). +%% @todo Do counters even have a name? send_100e(CounterID, AreaName, #state{socket=Socket, gid=DestGID}) -> PartyPos = 0, UCS2Name = << << X:8, 0:8 >> || X <- AreaName >>,