summaryrefslogtreecommitdiff
path: root/engine/events/misc_scripts_2.asm
blob: 515d8d3960fa35c78202d9674c267e30a2824cc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
RepelWoreOffScript::
	opentext
	writetext .text
	waitbutton
	closetext
	end

.text
	; REPEL's effect wore off.
	text_far UnknownText_0x1bd308
	text_end

HiddenItemScript::
	opentext
	readmem wEngineBuffer3
	getitemname STRING_BUFFER_3, USE_SCRIPT_VAR
	writetext .found_text
	giveitem ITEM_FROM_MEM
	iffalse .bag_full
	callasm SetMemEvent
	specialsound
	itemnotify
	sjump .finish

.bag_full
	buttonsound
	writetext .no_room_text
	waitbutton

.finish
	closetext
	end

.found_text
	; found @ !
	text_far UnknownText_0x1bd321
	text_end

.no_room_text
	; But   has no space left…
	text_far UnknownText_0x1bd331
	text_end

SetMemEvent:
	ld hl, wEngineBuffer1
	ld a, [hli]
	ld d, [hl]
	ld e, a
	ld b, SET_FLAG
	call EventFlagAction
	ret