File src/sorcerer0/s00config.j renamed from src/sorcerer0/config.j (similarity 68%) (mode: 100644) (index 0346f22..d9cccef) |
... |
... |
globals |
7 |
7 |
endglobals |
endglobals |
8 |
8 |
|
|
9 |
9 |
function InitCustomPlayerSlots takes nothing returns nothing |
function InitCustomPlayerSlots takes nothing returns nothing |
10 |
|
call SetPlayerStartLocation(USER, 0) |
|
|
10 |
|
call ForcePlayerStartLocation(USER, 0) |
11 |
11 |
call SetPlayerColor(USER, PLAYER_COLOR_PINK) |
call SetPlayerColor(USER, PLAYER_COLOR_PINK) |
12 |
12 |
call SetPlayerRacePreference(USER, RACE_PREF_HUMAN) |
call SetPlayerRacePreference(USER, RACE_PREF_HUMAN) |
13 |
13 |
call SetPlayerRaceSelectable(USER, false) |
call SetPlayerRaceSelectable(USER, false) |
14 |
14 |
call SetPlayerController(USER, MAP_CONTROL_USER) |
call SetPlayerController(USER, MAP_CONTROL_USER) |
15 |
15 |
|
|
16 |
|
call SetPlayerStartLocation(PLAYER_UNDEAD, 1) |
|
|
16 |
|
call ForcePlayerStartLocation(PLAYER_UNDEAD, 1) |
17 |
17 |
call SetPlayerColor(PLAYER_UNDEAD, PLAYER_COLOR_GREEN) |
call SetPlayerColor(PLAYER_UNDEAD, PLAYER_COLOR_GREEN) |
18 |
18 |
call SetPlayerRacePreference(PLAYER_UNDEAD, RACE_PREF_UNDEAD) |
call SetPlayerRacePreference(PLAYER_UNDEAD, RACE_PREF_UNDEAD) |
19 |
19 |
call SetPlayerRaceSelectable(PLAYER_UNDEAD, false) |
call SetPlayerRaceSelectable(PLAYER_UNDEAD, false) |
20 |
20 |
call SetPlayerController(PLAYER_UNDEAD, MAP_CONTROL_COMPUTER) |
call SetPlayerController(PLAYER_UNDEAD, MAP_CONTROL_COMPUTER) |
21 |
21 |
call SetPlayerName(PLAYER_UNDEAD, "Undead") |
call SetPlayerName(PLAYER_UNDEAD, "Undead") |
22 |
22 |
|
|
23 |
|
call SetPlayerStartLocation(PLAYER_TROLL, 2) |
|
|
23 |
|
call ForcePlayerStartLocation(PLAYER_TROLL, 2) |
24 |
24 |
call SetPlayerColor(PLAYER_TROLL, PLAYER_COLOR_YELLOW) |
call SetPlayerColor(PLAYER_TROLL, PLAYER_COLOR_YELLOW) |
25 |
25 |
call SetPlayerRacePreference(PLAYER_TROLL, RACE_PREF_ORC) |
call SetPlayerRacePreference(PLAYER_TROLL, RACE_PREF_ORC) |
26 |
26 |
call SetPlayerRaceSelectable(PLAYER_TROLL, false) |
call SetPlayerRaceSelectable(PLAYER_TROLL, false) |
|
... |
... |
function InitCustomTeams takes nothing returns nothing |
35 |
35 |
endfunction |
endfunction |
36 |
36 |
|
|
37 |
37 |
function config takes nothing returns nothing |
function config takes nothing returns nothing |
38 |
|
call SetMapName( "TRIGSTR_001" ) |
|
39 |
|
call SetMapDescription( "TRIGSTR_003" ) |
|
40 |
|
call SetPlayers( 1 ) |
|
41 |
|
call SetTeams( 3 ) |
|
42 |
|
call SetGamePlacement( MAP_PLACEMENT_USE_MAP_SETTINGS ) |
|
43 |
|
|
|
44 |
|
call DefineStartLocation( 0, 0.0, 0.0 ) |
|
45 |
|
call DefineStartLocation( 1, 512.0, 0.0 ) |
|
46 |
|
call DefineStartLocation( 2, 1024.0, 0.0 ) |
|
47 |
|
|
|
48 |
|
// Player setup |
|
49 |
|
call InitCustomPlayerSlots( ) |
|
50 |
|
call InitCustomTeams( ) |
|
|
38 |
|
call SetMapName("TRIGSTR_001") |
|
39 |
|
call SetMapDescription("TRIGSTR_003") |
|
40 |
|
call SetPlayers(1) |
|
41 |
|
call SetTeams(3) |
|
42 |
|
call SetGamePlacement(MAP_PLACEMENT_USE_MAP_SETTINGS) |
|
43 |
|
|
|
44 |
|
call DefineStartLocation(0, -4000.0, -5300.0) |
|
45 |
|
call DefineStartLocation(1, 512.0, 0.0) |
|
46 |
|
call DefineStartLocation(2, 1024.0, 0.0) |
|
47 |
|
|
|
48 |
|
call SetMapFlag(MAP_FOG_HIDE_TERRAIN, true) |
|
49 |
|
|
|
50 |
|
// Player setup |
|
51 |
|
call InitCustomPlayerSlots() |
|
52 |
|
call InitCustomTeams() |
51 |
53 |
endfunction |
endfunction |
File src/sorcerer0/s01room100.j added (mode: 100644) (index 0000000..febf2ef) |
|
1 |
|
globals |
|
2 |
|
group room100_group1 = null |
|
3 |
|
group room100_group2 = null |
|
4 |
|
endglobals |
|
5 |
|
|
|
6 |
|
function room100_action takes nothing returns nothing |
|
7 |
|
local group g = room100_group1 |
|
8 |
|
local group p = room100_group2 |
|
9 |
|
local real x = -2300.0 |
|
10 |
|
local real y = -1850.0 |
|
11 |
|
local region r = GetTriggeringRegion() |
|
12 |
|
local trigger t = GetTriggeringTrigger() |
|
13 |
|
local unit u = GetEnteringUnit() |
|
14 |
|
|
|
15 |
|
if USER != GetOwningPlayer(u) then |
|
16 |
|
return |
|
17 |
|
endif |
|
18 |
|
|
|
19 |
|
call GroupPointOrderById(g, BASE_ORDER_ATTACK, x, y) |
|
20 |
|
call GroupPointOrderById(p, BASE_ORDER_ATTACK, x, y) |
|
21 |
|
|
|
22 |
|
call DestroyGroup(g) |
|
23 |
|
call DestroyTrigger(t) |
|
24 |
|
call RemoveRegion(r) |
|
25 |
|
endfunction |
|
26 |
|
|
|
27 |
|
function room100_init takes nothing returns nothing |
|
28 |
|
local group g = CreateGroup() |
|
29 |
|
local group p = CreateGroup() |
|
30 |
|
local real a1 = -2500.0 |
|
31 |
|
local real a2 = 0 |
|
32 |
|
local real b1 = -2000.0 |
|
33 |
|
local real b2 = -3500.0 |
|
34 |
|
local rect q = Rect(-3500.0, -2500.0, -2000.0, -1000.0) |
|
35 |
|
local region r = CreateRegion() |
|
36 |
|
local trigger t = CreateTrigger() |
|
37 |
|
local unit u = null |
|
38 |
|
|
|
39 |
|
call RegionAddRect(r, q) |
|
40 |
|
call RemoveRect(q) |
|
41 |
|
|
|
42 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'ugho', a1 + 64.0, a2 - 64.0, 225.0) |
|
43 |
|
call GroupAddUnit(g, u) |
|
44 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'ugho', a1 - 64.0, a2 - 64.0, 225.0) |
|
45 |
|
call GroupAddUnit(g, u) |
|
46 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'ugho', a1 + 64.0, a2 + 64.0, 225.0) |
|
47 |
|
call GroupAddUnit(g, u) |
|
48 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'ugho', a1 - 64.0, a2 + 64.0, 225.0) |
|
49 |
|
call GroupAddUnit(g, u) |
|
50 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'ucry', a1 + 64.0, a2 - 64.0, 225.0) |
|
51 |
|
call GroupAddUnit(g, u) |
|
52 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'ucry', a1 - 64.0, a2 - 64.0, 225.0) |
|
53 |
|
call GroupAddUnit(g, u) |
|
54 |
|
|
|
55 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'ugho', b1 + 64.0, b2 - 64.0, 225.0) |
|
56 |
|
call GroupAddUnit(p, u) |
|
57 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'ugho', b1 - 64.0, b2 - 64.0, 225.0) |
|
58 |
|
call GroupAddUnit(p, u) |
|
59 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'ugho', b1 + 64.0, b2 + 64.0, 225.0) |
|
60 |
|
call GroupAddUnit(p, u) |
|
61 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'ugho', b1 - 64.0, b2 + 64.0, 225.0) |
|
62 |
|
call GroupAddUnit(p, u) |
|
63 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'ucry', b1 + 64.0, b2 - 64.0, 225.0) |
|
64 |
|
call GroupAddUnit(p, u) |
|
65 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'ucry', b1 - 64.0, b2 - 64.0, 225.0) |
|
66 |
|
call GroupAddUnit(p, u) |
|
67 |
|
|
|
68 |
|
set room100_group1 = g |
|
69 |
|
set room100_group2 = p |
|
70 |
|
|
|
71 |
|
call TriggerRegisterEnterRegion(t, r, null) |
|
72 |
|
call TriggerAddAction(t, function room100_action) |
|
73 |
|
endfunction |
File src/sorcerer0/s02main.j added (mode: 100644) (index 0000000..114be54) |
|
1 |
|
// src/sorcerer0/main.j
|
|
2 |
|
|
|
3 |
|
function sorcerer0_tech_init takes nothing returns nothing
|
|
4 |
|
call SetPlayerTechResearched(USER, 'Rhpt', 2)
|
|
5 |
|
call SetPlayerTechResearched(USER, 'Rhst', 2)
|
|
6 |
|
call SetPlayerTechResearched(USER, 'Rhss', 1)
|
|
7 |
|
|
|
8 |
|
call SetPlayerTechResearched(USER, 'Resm', 1)
|
|
9 |
|
call SetPlayerTechResearched(USER, 'Rhar', 1)
|
|
10 |
|
call SetPlayerTechResearched(USER, 'Rhde', 1)
|
|
11 |
|
call SetPlayerTechResearched(USER, 'Rhla', 1)
|
|
12 |
|
call SetPlayerTechResearched(USER, 'Rhme', 1)
|
|
13 |
|
call SetPlayerTechResearched(USER, 'Rhra', 1)
|
|
14 |
|
|
|
15 |
|
call SetPlayerTechResearched(PLAYER_UNDEAD, 'Ruba', 2)
|
|
16 |
|
call SetPlayerTechResearched(PLAYER_UNDEAD, 'Rune', 2)
|
|
17 |
|
call SetPlayerTechResearched(PLAYER_UNDEAD, 'Rusl', 1)
|
|
18 |
|
call SetPlayerTechResearched(PLAYER_UNDEAD, 'Rusm', 1)
|
|
19 |
|
|
|
20 |
|
call SetPlayerTechResearched(PLAYER_UNDEAD, 'Ruac', 1)
|
|
21 |
|
call SetPlayerTechResearched(PLAYER_UNDEAD, 'Rubu', 1)
|
|
22 |
|
call SetPlayerTechResearched(PLAYER_UNDEAD, 'Ruwb', 1)
|
|
23 |
|
endfunction
|
|
24 |
|
|
|
25 |
|
function sorcerer0_user_init takes nothing returns nothing
|
|
26 |
|
local unit t = null
|
|
27 |
|
local unit u = null
|
|
28 |
|
|
|
29 |
|
set u = CreateUnit(USER, UID_MARAKANIS, -4033.0, -5426.0, 240.0)
|
|
30 |
|
call SetUnitState(u, UNIT_STATE_MANA, GetUnitState(u, UNIT_STATE_MAX_MANA))
|
|
31 |
|
|
|
32 |
|
if USER == GetLocalPlayer() then
|
|
33 |
|
call SelectUnit(u, true)
|
|
34 |
|
endif
|
|
35 |
|
call SetHeroLevel(u, 0, false)
|
|
36 |
|
call SelectHeroSkill(u, SPELL00_ABILITY_ID)
|
|
37 |
|
|
|
38 |
|
call quest_constraint_unit_survives_create(CONSTRAINT00, USER, u)
|
|
39 |
|
|
|
40 |
|
call CreateUnit(USER, 'hhes', -4426.0, -4924.0, 300.0)
|
|
41 |
|
call CreateUnit(USER, 'hhes', -4302.0, -4766.0, 290)
|
|
42 |
|
call CreateUnit(USER, 'hhes', -4374.0, -5921.0, 45.0)
|
|
43 |
|
call CreateUnit(USER, 'hhes', -3250.0, -5843.0, 150.0)
|
|
44 |
|
|
|
45 |
|
set t = CreateUnit(USER, 'hspt', -4120.0, -5400.0, 250.0)
|
|
46 |
|
call SetUnitState(t, UNIT_STATE_MANA, GetUnitState(t, UNIT_STATE_MAX_MANA))
|
|
47 |
|
set t = CreateUnit(USER, 'hspt', -3941.0, -5518.0, 230.0)
|
|
48 |
|
call SetUnitState(t, UNIT_STATE_MANA, GetUnitState(t, UNIT_STATE_MAX_MANA))
|
|
49 |
|
|
|
50 |
|
set t = CreateUnit(USER, 'hmpr', -4750.0, -5400, 345.0)
|
|
51 |
|
call SetUnitState(t, UNIT_STATE_MANA, GetUnitState(t, UNIT_STATE_MAX_MANA))
|
|
52 |
|
set t = CreateUnit(USER, 'hmpr', -4700.0, -5450, 0.0)
|
|
53 |
|
call SetUnitState(t, UNIT_STATE_MANA, GetUnitState(t, UNIT_STATE_MAX_MANA))
|
|
54 |
|
set t = CreateUnit(USER, 'hmpr', -4750.0, -5500, 15.0)
|
|
55 |
|
call SetUnitState(t, UNIT_STATE_MANA, GetUnitState(t, UNIT_STATE_MAX_MANA))
|
|
56 |
|
|
|
57 |
|
set t = CreateUnit(USER, 'hsor', -3900.0, -6015.0, 30.0)
|
|
58 |
|
call SetUnitState(t, UNIT_STATE_MANA, GetUnitState(t, UNIT_STATE_MAX_MANA))
|
|
59 |
|
set t = CreateUnit(USER, 'hsor', -3700.0, -5971.0, 200.0)
|
|
60 |
|
call SetUnitState(t, UNIT_STATE_MANA, GetUnitState(t, UNIT_STATE_MAX_MANA))
|
|
61 |
|
endfunction
|
|
62 |
|
|
|
63 |
|
function sorcerer0_undead_init takes nothing returns nothing
|
|
64 |
|
local real ox = GetStartLocationX(GetPlayerId(PLAYER_UNDEAD))
|
|
65 |
|
local real oy = GetStartLocationX(GetPlayerId(PLAYER_UNDEAD))
|
|
66 |
|
|
|
67 |
|
local unit u = null
|
|
68 |
|
|
|
69 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'uabo', ox + 128.0, oy + 128.0, bj_UNIT_FACING)
|
|
70 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'uabo', ox - 128.0, oy + 128.0, bj_UNIT_FACING)
|
|
71 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'uabo', ox - 128.0, oy - 128.0, bj_UNIT_FACING)
|
|
72 |
|
set u = CreateUnit(PLAYER_UNDEAD, 'uban', ox, oy, bj_UNIT_FACING)
|
|
73 |
|
call SetUnitState(u, UNIT_STATE_MANA, GetUnitState(u, UNIT_STATE_MAX_MANA))
|
|
74 |
|
endfunction
|
|
75 |
|
|
|
76 |
|
function sorcerer0_init takes nothing returns nothing
|
|
77 |
|
call sorcerer0_tech_init()
|
|
78 |
|
call sorcerer0_user_init()
|
|
79 |
|
call sorcerer0_undead_init()
|
|
80 |
|
|
|
81 |
|
call room100_init()
|
|
82 |
|
endfunction
|
|
83 |
|
|
|
84 |
|
function main takes nothing returns nothing
|
|
85 |
|
call SetCameraBounds( -7424.0 + GetCameraMargin(CAMERA_MARGIN_LEFT), -7680.0 + GetCameraMargin(CAMERA_MARGIN_BOTTOM), 7424.0 - GetCameraMargin(CAMERA_MARGIN_RIGHT), 7168.0 - GetCameraMargin(CAMERA_MARGIN_TOP), -7424.0 + GetCameraMargin(CAMERA_MARGIN_LEFT), 7168.0 - GetCameraMargin(CAMERA_MARGIN_TOP), 7424.0 - GetCameraMargin(CAMERA_MARGIN_RIGHT), -7680.0 + GetCameraMargin(CAMERA_MARGIN_BOTTOM) )
|
|
86 |
|
call SetDayNightModels( "Environment\\DNC\\DNCLordaeron\\DNCLordaeronTerrain\\DNCLordaeronTerrain.mdl", "Environment\\DNC\\DNCLordaeron\\DNCLordaeronUnit\\DNCLordaeronUnit.mdl" )
|
|
87 |
|
call NewSoundEnvironment( "Default" )
|
|
88 |
|
call SetAmbientDaySound( "VillageDay" )
|
|
89 |
|
call SetAmbientNightSound( "VillageNight" )
|
|
90 |
|
call SetMapMusic( "Music", true, 0 )
|
|
91 |
|
call InitBlizzard( )
|
|
92 |
|
call cmpgn_init()
|
|
93 |
|
call sorcerer0_init()
|
|
94 |
|
endfunction
|
File src/sorcerer0/sorcerer0.m4 changed (mode: 100644) (index 94b105a..90d477a) |
... |
... |
define(endglobals, `divert(0)divert(2)')dnl |
3 |
3 |
divert(2)dnl |
divert(2)dnl |
4 |
4 |
dnl # WARNING: included files must never contain the tilde glyph, |
dnl # WARNING: included files must never contain the tilde glyph, |
5 |
5 |
dnl # otherwise this m4 script produces malformed *.j snippet |
dnl # otherwise this m4 script produces malformed *.j snippet |
|
6 |
|
include(`src/base/base.j')dnl |
6 |
7 |
include(`src/base/quest.j')dnl |
include(`src/base/quest.j')dnl |
7 |
8 |
include(`src/spellbook/spell00.j')dnl |
include(`src/spellbook/spell00.j')dnl |
8 |
9 |
include(`src/spellbook/spell01.j')dnl |
include(`src/spellbook/spell01.j')dnl |
9 |
10 |
include(`src/sorcerer/cmpgn.j')dnl |
include(`src/sorcerer/cmpgn.j')dnl |
10 |
|
include(`src/sorcerer0/config.j')dnl |
|
11 |
|
include(`src/sorcerer0/main.j')dnl |
|
|
11 |
|
include(`src/sorcerer0/s00config.j')dnl |
|
12 |
|
include(`src/sorcerer0/s01room100.j')dnl |
|
13 |
|
include(`src/sorcerer0/s02main.j')dnl |
12 |
14 |
divert(0)dnl |
divert(0)dnl |
13 |
15 |
undefine(`globals')dnl # Leave 'globals' token as it is |
undefine(`globals')dnl # Leave 'globals' token as it is |
14 |
16 |
undefine(`endglobals')dnl # Leave 'endglobals' token as it is |
undefine(`endglobals')dnl # Leave 'endglobals' token as it is |