Difficulty 1/10
Base; Delta cleaned
Knowledge needed; C&p
How hard is it; Easy
Search for
if (NPCID == 316) {
You should see a code like this
if (NPCID == 316) {
/* Net From Net & Bait - Any Sea */
if ((IsItemInBag(303) == true)) {
// startFishing(316);
} else {
sM("You need a " + getItemName(303) + " to fish here.");
}
} else if (NPCID == 321) {
// startFishing(321);
} else if (NPCID == 322) {
// startFishing(322);
} else if (NPCID == 323) {
// startFishing(323);
Under
} else if (NPCID == 323) {
// startFishing(323);
Add
} else if (NPCID == 599) {
showInterface(3559);
So now it should look like this
if (NPCID == 316) {
/* Net From Net & Bait - Any Sea */
if ((IsItemInBag(303) == true)) {
// startFishing(316);
} else {
sM("You need a " + getItemName(303) + " to fish here.");
}
} else if (NPCID == 321) {
// startFishing(321);
} else if (NPCID == 322) {
// startFishing(322);
} else if (NPCID == 323) {
// startFishing(323);
} else if (NPCID == 599) {
showInterface(3559);
This is for delta cleaned! It may not be the same for other souces.