summaryrefslogtreecommitdiff
path: root/npc/functions/fishing.txt
blob: e995595c61b2e2efb30411070faa029ee39e99cc (plain) (blame)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
// Evol functions.
// Authors:
//    gumi
//    omatt
//    Travolta
//    Reid
//    Jesusalva
// Description:
//    Fishing functions.
// Variable
//    .dir
//         DOWN    Never try or pulled too late
//         UP      Bait dropped
//         LEFT    Fish bite bait
//
// player log on .dir is DOWN, start by choose bait menu
// player chooses bait, script addtimer in npc .dir is UP
// if player pulls before signal npc, bait is lost, set .bait to DOWN goto choose bait
// if player pulls after pull delay max, bait is lost, set .bait to DOWN goto choose bait
// npc signal .dir is LEFT
// player pulls between npc signal and pulls delay max, got the fish, set .dir to DOWN goto choose bait

function	script	fishing_cleanup	{
    .@npc$ = getarg(0, "");
    if (.@npc$ == "") end;

    set getvariableofnpc(.char_id, .@npc$), 0; // clean acc id
    set getvariableofnpc(.account_id, .@npc$), 0; // clean char id
    set getvariableofnpc(.last_used, .@npc$), gettimetick(2); // set last used time
    setnpcdir .@npc$, DOWN; // reset direction
    return;
}

-	script	global fishing handler	32767,{
    end;

OnBite:
    if (getnpcdir(@fishing_spot$) != UP)
        end;

    setnpcdir @fishing_spot$, LEFT;
    @fishing_tick = gettimetick(0);
    specialeffect(getvariableofnpc(.bite_fx, @fishing_spot$), SELF, playerattached());
    end;

OnCleanUp:
    dispbottom l("You waited too long and lost the bait...");
    specialeffect(getvariableofnpc(.failure_fx, @fishing_spot$), SELF, playerattached()); // event fail
    fishing_cleanup(@fishing_spot$);
    @fishing_spot$ = ""; // unbind fishing npc
    end;
}

function	script	fishing	{

///////////////////////////////////////////
// Var initialization

    .@npc$ = strnpcinfo(0); // the full name of the fishing spot

    .@account_id = getvariableofnpc(.account_id, .@npc$); // the account id of the player using the fishing spot
    .@char_id = getvariableofnpc(.char_id, .@npc$); // the char id of the player using the fishing spot
    .@dir = getnpcdir(.@npc$); // direction of the fishing spot
    .@last_used = getvariableofnpc(.last_used, .@npc$); // when this fishing spot was last used
    .@baits = getvariableofnpc(.baits, .@npc$); // bait count

    .@rod = getvariableofnpc(.fishing_rod, .@npc$); // the fishing rod required for this spot
    .@rod = (.@rod ? .@rod : FishingRod);

    .@regen_time = getvariableofnpc(.cooldown, .@npc$); // cooldown for the fishing spot
    .@regen_time = (.@regen_time ? .@regen_time : 20);

    .@success_fx = getvariableofnpc(.success_fx, .@npc$); // effect to show on success
    .@success_fx = (.@success_fx ? .@success_fx : 27);

    .@failure_fx = getvariableofnpc(.failure_fx, .@npc$); // effect to show on failure
    if (.@failure_fx < 1)
    {
        .@failure_fx = 28;
        set getvariableofnpc(.failure_fx, .@npc$), .@failure_fx; // needed by global handler
    }

    .@initial_fx = getvariableofnpc(.initial_fx, .@npc$); // effect to show when throwing the bait
    .@initial_fx = (.@initial_fx ? .@initial_fx : 29);

    .@bite_fx = getvariableofnpc(.bite_fx, .@npc$); // effect to show when something bites
    if (.@bite_fx < 1)
    {
        .@bite_fx = 30;
        set getvariableofnpc(.bite_fx, .@npc$), .@bite_fx; // needed by global handler
    }

    .@wait_time_min = getvariableofnpc(.wait_time_min, .@npc$); // min amount of time to wait for the line to sink
    .@wait_time_min = (.@wait_time_min ? .@wait_time_min : 4000);

    .@wait_time_max = getvariableofnpc(.wait_time_max, .@npc$); // max amount of time to wait for the line to sink
    .@wait_time_max = (.@wait_time_max ? .@wait_time_max : 18000);

    .@catch_time = getvariableofnpc(.catch_time, .@npc$); // the player must catch the fish within X ms after the line sinks
    .@catch_time = (.@catch_time ? .@catch_time : 5000);

    .@pull_rand_max = getvariableofnpc(.pull_rand_max, .@npc$);
    .@pull_rand_max = (.@pull_rand_max ? .@pull_rand_max : 800);


    if (getvariableofnpc(.bait_ids[1], .@npc$) < 1)
    {
        // default baits (bait, chance booster)
        // TODO: we should have some fish prefer certain baits while other
        //       prefer other bait. currently all fish prefer the same baits
        setarray getvariableofnpc(.bait_ids[1], .@npc$),
            SmallTentacles, 0,
            Bread, 0,
            Aquada, 1,
            UrchinMeat, 0,
            TortugaTongue, 2,
            Tentacles, 0;
    }

    if (getvariableofnpc(.fish_ids[1], .@npc$) < 1)
    {
        // default fish: <array: 0, {[fish, probability]..}>
        setarray getvariableofnpc(.fish_ids[1], .@npc$),
            CommonCarp, 25,
            GrassCarp, 1;
    }

    if (.@baits < 1)
    {
        // only count it once
        .@baits = getarraysize(getvariableofnpc(.bait_ids[0], .@npc$));
        set getvariableofnpc(.baits, .@npc$), .@baits;
    }


///////////////////////////////////////////
// Logic below

    if (countitem(.@rod) < 1)
    {
        dispbottom l("You don't have any @@.", getitemlink(.@rod));
        return -1;
    }

    if (.@account_id > 0 && !isloggedin(.@account_id, .@char_id))
    {
        fishing_cleanup .@npc$; // reset
        .@dir = DOWN;
    }

    if (.@char_id != getcharid(CHAR_ID_CHAR) && .@dir != DOWN)
    {
        dispbottom l("This fishing spot is already being used!");
        return -2;
    }


    // pull too soon
    if (.@dir == UP)
    {
        deltimer "global fishing handler::OnCleanUp"; // cancel auto cleanup
        deltimer "global fishing handler::OnBite";
        specialeffect(.@failure_fx, SELF, playerattached());  // event fail
        fishing_cleanup .@npc$; // do it manually instead
        dispbottom l("You pulled too soon and lost the bait.");
        return -3;
    }

    // pull maybe on time
    else if (.@dir == LEFT)
    {
        deltimer "global fishing handler::OnCleanUp"; // cancel auto cleanup
        fishing_cleanup .@npc$; // do it manually instead

        getmapxy .@mapbis$, .@xbis, .@ybis, UNITTYPE_PC; // get current char location

        // Leave spot, lost the bait
        if (.@mapbis$ != @fishing_loc$[0] || .@xbis != @fishing_loc[0] || .@ybis != @fishing_loc[1] || @fishing_spot$ != .@npc$)
        {
            dispbottom l("You left your fishing spot!");
            return -4;
        }

        .@fish_id = relative_array_random(getvariableofnpc(.fish_ids[0], .@npc$));

        // RNG to obtain a fish
        if (rand(gettimetick(0) - @fishing_tick) <= .@pull_rand_max + (100 * @FISHING_BOOSTER[getnpcid()]))
        {
            specialeffect(.@success_fx, SELF, playerattached()); // event success
            EXP_FISH += 1; // TODO: It could be done better

            if(!checkweight(.@fish_id, 1))
            {
                dispbottom l("You caught a @@ but had no room in your inventory to carry it.", getitemlink(.@fish_id));
                makeitem .@fish_id, 1, .@mapbis$, .@xbis, .@ybis; // drop on the ground
                return 0;
            }

            //dispbottom l("You caught a @@!", getitemlink(.@fish_id)); <= already shows "you picked up [...]"
            getitem .@fish_id, 1;
        }
        else
        {
            dispbottom l("You pulled too late and lost the bait...");
            specialeffect(.@failure_fx, SELF, playerattached());  // event fail
            .@fish_id = 0;
        }

        return .@fish_id;
    }



    if (gettimetick(2) - .@last_used < .@regen_time)
    {
        dispbottom l("This fishing spot has just been used, give it a rest.");
        return -5;
    }


    // begin fishing
    narrator S_LAST_NEXT,
        l("You see some fish reflecting the sun on the surface of the water."),
        l("What will be the bait for the fish?");

    mes "##B" + l("Drag and drop an item from your inventory.") + "##b";

    .@bait = requestitem();
    .@bait_c = false;

    if (.@bait < 1)
    {
        narrator S_FIRST_BLANK_LINE,
            l("You take your fishing rod and leave.");

        return -6;
    }

    if (countitem(.@bait) < 1)
    {
        return -6;
    }

    for (.@i = 1; .@i < .@baits; .@i += 2)
    {
        if (getvariableofnpc(.bait_ids[.@i], .@npc$) == .@bait)
        {
            .@bait_c = true;
            @FISHING_BOOSTER[getnpcid()] = getvariableofnpc(.bait_ids[.@i + 1], .@npc$) + min(5, LVL_FISH/3); // TODO: Currently, every 3 levels give +1 rare
            // ...rate, up to a +5 at level 15 (baits can only give up to +2)
            break;
        }
    }

    if (.@bait_c != true)
    {
        narrator S_FIRST_BLANK_LINE,
            l("This item cannot be used as bait here.");

        return -6;
    }

    if (getvariableofnpc(.char_id, .@npc$) > 0)
    {
        narrator S_FIRST_BLANK_LINE,
            l("Somebody took your place on this spot!"),
            l("You take your fishing rod and leave.");
        return -8;
    }

    @fishing_spot$ = .@npc$; // bind player to fishing spot
    set getvariableofnpc(.account_id, .@npc$), getcharid(CHAR_ID_ACCOUNT); // record account id
    set getvariableofnpc(.char_id, .@npc$), getcharid(CHAR_ID_CHAR); // record char id
    set getvariableofnpc(.last_used, .@npc$), gettimetick(2);
    getmapxy(@fishing_loc$[0], @fishing_loc[0], @fishing_loc[1], 0); // record char pos
    delitem .@bait, 1;

    // The player uses this spot, his bait is ready, he just has to wait for the signal.
    closeclientdialog;

    specialeffect(.@initial_fx, SELF); // throw the bait
    sleep2 800;    // wait 0.8s for synchronize the sound of "plop" in water with the npc dir UP.
    setnpcdir .@npc$, UP;

    dispbottom l("Wait for the bait to sink underwater.");

    .@delay = rand(.@wait_time_min, .@wait_time_max);

    addtimer .@delay, "global fishing handler::OnBite"; // bite logic
    addtimer (.@delay + .@catch_time), "global fishing handler::OnCleanUp"; // auto clean up

    return 0;
}


////////////////////
// Fishing Templates

// #fish_basic - has only carps (freshwater)
-	script	#fish_basic	NPC_WATER_SPLASH,{

    fishing(); // begin or continue fishing
    close;

OnInit:
    .distance = 5;
    setarray .fish_ids, 0,
        CommonCarp, 25,
        GrassCarp, 1;
    .fishing_rod = FishingRod; // Equipment to fish here
    .catch_time = 5000; // must catch the fish within X ms after the line sinks
    .wait_time_min = 4000; // min amount of time to wait for the line to sink
    .wait_time_max = 18000; // max amount of time to wait for the line to sink
    end;
}


// #fish_seawater - has only tuna
-	script	#fish_seawater	NPC_WATER_SPLASH,{

    fishing(); // begin or continue fishing
    close;

OnInit:
    .distance = 5;
    setarray .fish_ids, 0,
        Tuna, 15,
        Salmon, 1;
    .fishing_rod = FishingRod; // Equipment to fish here
    .catch_time = 4000; // must catch the fish within X ms after the line sinks
    .wait_time_min = 8000; // min amount of time to wait for the line to sink
    .wait_time_max = 18000; // max amount of time to wait for the line to sink
    end;
}



// #fish_river - A balanced fishing spot for Woodlands (Trout)
-	script	#fish_river	NPC_WATER_SPLASH,{

    fishing(); // begin or continue fishing
    close;

OnInit:
    .distance = 5;
    setarray .fish_ids, 0,
        CommonCarp, 25,
        Trout, 20,
        GrassCarp, 5,
        Salmon, 1;
    .fishing_rod = FishingRod; // Equipment to fish here
    .catch_time = 5500; // must catch the fish within X ms after the line sinks
    .wait_time_min = 5000; // min amount of time to wait for the line to sink
    .wait_time_max = 16000; // max amount of time to wait for the line to sink
    end;
}




// #fish_river2 - A balanced fishing spot for Candor (Salmon)
-	script	#fish_river2	NPC_WATER_SPLASH,{

    fishing(); // begin or continue fishing
    close;

OnInit:
    .distance = 5;
    setarray .fish_ids, 0,
        CommonCarp, 25,
        Salmon, 20,
        GrassCarp, 5,
        Trout, 1;
    .fishing_rod = FishingRod; // Equipment to fish here
    .catch_time = 5500; // must catch the fish within X ms after the line sinks
    .wait_time_min = 5000; // min amount of time to wait for the line to sink
    .wait_time_max = 16000; // max amount of time to wait for the line to sink
    end;
}




// #fish_frozen - A fishing spot with cold waters (for Nivalis)
-	script	#fish_frozen	NPC_WATER_SPLASH,{

    fishing(); // begin or continue fishing
    close;

OnInit:
    .distance = 5;
    setarray .fish_ids, 0,
        CommonCarp, 25,
        Codfish, 20,
        GrassCarp, 5,
        Salmon, 1;
    .fishing_rod = FishingRod; // Equipment to fish here
    .catch_time = 5500; // must catch the fish within X ms after the line sinks
    .wait_time_min = 5000; // min amount of time to wait for the line to sink
    .wait_time_max = 16000; // max amount of time to wait for the line to sink
    end;
}