quests: Convert the Counters to configuration files.
This commit is contained in:
parent
1e83a98d22
commit
71772a58fb
48
priv/quests/0/quest.conf
Normal file
48
priv/quests/0/quest.conf
Normal file
@ -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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
%% 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, []}.
|
@ -1,5 +1,7 @@
|
|||||||
List of quests:
|
List of quests:
|
||||||
|
|
||||||
|
0 Counters
|
||||||
|
|
||||||
1100000 GUARDIANS Colony lobbies
|
1100000 GUARDIANS Colony lobbies
|
||||||
1101000 Parum lobbies
|
1101000 Parum lobbies
|
||||||
1102000 Neudaiz lobbies
|
1102000 Neudaiz lobbies
|
||||||
|
@ -261,7 +261,7 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}, State=#sta
|
|||||||
FromArea = {psu_area, OldArea#psu_area.questid, FromZoneID, FromMapID},
|
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},
|
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),
|
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",
|
ZoneFile = "data/lobby/counter.zone.nbl",
|
||||||
%% broadcast unspawn to other people
|
%% broadcast unspawn to other people
|
||||||
{ok, UnspawnList} = egs_user_model:select({neighbors, OldUser}),
|
{ok, UnspawnList} = egs_user_model:select({neighbors, OldUser}),
|
||||||
|
@ -1517,6 +1517,7 @@ send_1006(EventID, PartyPos, #state{socket=Socket, gid=DestGID}) ->
|
|||||||
%% @todo Handle PartyPos.
|
%% @todo Handle PartyPos.
|
||||||
%% @todo Receive the AreaName as UCS2 directly to allow for color codes and the like.
|
%% @todo Receive the AreaName as UCS2 directly to allow for color codes and the like.
|
||||||
%% @todo Handle TargetLID probably (right after the padding).
|
%% @todo Handle TargetLID probably (right after the padding).
|
||||||
|
%% @todo Do counters even have a name?
|
||||||
send_100e(CounterID, AreaName, #state{socket=Socket, gid=DestGID}) ->
|
send_100e(CounterID, AreaName, #state{socket=Socket, gid=DestGID}) ->
|
||||||
PartyPos = 0,
|
PartyPos = 0,
|
||||||
UCS2Name = << << X:8, 0:8 >> || X <- AreaName >>,
|
UCS2Name = << << X:8, 0:8 >> || X <- AreaName >>,
|
||||||
|
Loading…
Reference in New Issue
Block a user