Author Topic: Making make over mage show char screen  (Read 129 times)

Offline AdotSells

  • Firecape Member
  • *
  • Posts: 300
  • Rep 4
    • View Profile
Making make over mage show char screen
« on: March 29, 2011, 09:43:18 pm »
Difficulty 1/10
Base; Delta cleaned
Knowledge needed; C&p
How hard is it; Easy

Search for
Quote
if (NPCID == 316) {

You should see a code like this
Quote
         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
Quote
         } else if (NPCID == 323) {
            // startFishing(323);
Add
Quote
         } else if (NPCID == 599) {
            showInterface(3559);

So now it should look like this
Quote
         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.
« Last Edit: March 30, 2011, 12:27:40 am by AdotSells »

Share on Bluesky Share on Facebook


Offline Sajon

  • Rune Member
  • *
  • Posts: 166
  • Rep -1
  • Never Back down
  • Location: United Kingdom
    • View Profile
Re: Making make over mage show char screen
« Reply #1 on: March 31, 2011, 12:56:12 am »
yeah can you give me a delta cleaned please pm me it. its for my own use

Offline Chandlermaki

  • Rune Member
  • *
  • Posts: 129
  • Rep 6
  • You's trollin'.
  • Location: USA
    • View Profile
Re: Making make over mage show char screen
« Reply #2 on: March 31, 2011, 02:30:26 am »
yeah can you give me a delta cleaned please pm me it. its for my own use

I have a DeltaCleaned with a control panel if you want it.
Insert clever signature here.