Thread: kalphite (my way)

Page 1 of 3 123 LastLast
Results 1 to 10 of 24
  1. #1 kalphite (my way) 
    Crysis
    Guest
    removed hope ur happy (dont be silly java it, grow up


    purpose: Making the kq queen

    difficulty: 4/10

    assumed knowledge: search , copy and paste , and now what files are called

    server base: project ceramony

    classed modified:autospawn.CFG and NPChandler.JAVA

    procedure:

    add this in auto spawn

    Code:
    //spawn = 1158	3489	9513	0	3490	9514	3489	9513	2	KalphiteQueen

    now under
    Code:
    public class NPCHandler {
    add

    Code:
    	public static int KQReset = 0;
    under
    Code:
    				} else if (npcs[i].npcType == 1590) {
    							npcs[i].animNumber = 92; //bronze dragon
    add
    Code:
    				} else if (npcs[i].npcType == 1158) {
    							gfxAll(310, 3488, 9515);
    							gfxAll(310, 3488, 9516);
    							gfxAll(310, 3487, 9516);
    							gfxAll(310, 3487, 9515);
    							gfxAll(310, 3487, 9514);
    							gfxAll(310, 3488, 9514);
    							gfxAll(310, 3489, 9514);
    							gfxAll(310, 3489, 9515);
    							gfxAll(310, 3489, 9516);
    							newBeast(1160, 3488, 9515, 0, 3488, 9515, 3488, 9515, 2, 2000, false); //KQ stage 2
    and
    Code:
    				} else if (npcs[i].npcType == 1160) {
    							KQReset = 0;
    						} else if (KQReset == 0) {
    							KQReset = 1;
    							gfxAll(310, 3488, 9515);
    							gfxAll(310, 3488, 9516);
    							gfxAll(310, 3487, 9516);
    							gfxAll(310, 3487, 9515);
    							gfxAll(310, 3487, 9514);
    							gfxAll(310, 3488, 9514);
    							gfxAll(310, 3489, 9514);
    							gfxAll(310, 3489, 9515);
    							gfxAll(310, 3489, 9516);
    							newBeast(1158, 3488, 9515, 0, 3488, 9515, 3488, 9515, 2, 2000, false); //KQ stage 1
    						} else if (npcs[i].npcType == 1592) {
    above
    Code:
    if(npcs[NPCID].npcType == 1615)
    {
    ItemHandler.addItem(Item2.randomAbyssal(), npcs[NPCID].absX, npcs[NPCID].absY, 1, GetNpcKiller(NPCID), false);
    ItemHandler.addItem(592, npcs[NPCID].absX, npcs[NPCID].absY, 1, GetNpcKiller(NPCID), false);
    }
    add
    Code:
    if(npcs[NPCID].npcType == 1160)
    {
    ItemHandler.addItem(Item2.randomKQ(), npcs[NPCID].absX, npcs[NPCID].absY, 1, GetNpcKiller(NPCID), false);
    }
    under
    Code:
    						} else if (npcs[NPCID].npcType == 1592) {
    							npcs[NPCID].animNumber = 80; //Dragon
    add
    Code:
    						} else if (npcs[NPCID].npcType == 1158) {
    							hitDiff = misc.random(40); //KQ attack

    save,compile and run

    wala
     

  2. #2  
    JavIt
    Guest
    leeched directly from firescape source!! give me 5 minutes ill get proof

    EDIT: [Only registered and activated users can see links. ]

    that is the link, notice the last date edited, and in the download in npchandler is the direct methods you used. Also, LOL, you forgot the newBeast method..

    Don't try leeching.
     

  3. #3  
    Crysis
    Guest
    Quote Originally Posted by JavIt View Post
    leeched directly from my firescape source!! give me 5 minutes ill get proof

    EDIT: [Only registered and activated users can see links. ]

    that is the link, notice the last date edited, and in the download in npchandler is the direct methods you used. Also, LOL, you forgot the newBeast method..

    Don't try leeching.
    erm no, i coded this with legend rene so idk what you are on about, and ive never heard of firescape m8

    tbh i aint a leecher, and i havent leeched, it works the way it is as ive added in 3 sources, i posted this before the section was cleaned on mopar and ive posted on sevral forums like ancientscape,projectwave,pkdesert,satansfury and i can get links so stfu mmk?
     

  4. #4  
    JavIt
    Guest
    No, you don't know what you are talking about, I made the method newBeast to work with fight caves and kalphite queen. Also, before you edit in newBeast method, let me give it to you.

    Code:
    	public void newBeast(int npcType, int x, int y, int heightLevel, int rangex1, int rangey1, int rangex2, int rangey2, int WalkingType, int HP, boolean Respawns) {
    		// first, search for a free slot
    		int slot = -1;
    		for (int i = 1; i < maxNPCs; i++) {
    			if (npcs[i] == null) {
    				slot = i;
    				break;
    			}
    		}
    
    		if(slot == -1) return;		// no free slot found
                     if(HP <= 0) { // This will cause client crashes if we don't use this :) - xero
                      HP = 100;
                    }
    		NPC newNPC = new NPC(slot, npcType);
    		newNPC.absX = x;
    		newNPC.absY = y;
    		newNPC.makeX = x;
    		newNPC.makeY = y;
    		newNPC.moverangeX1 = rangex1;
    		newNPC.moverangeY1 = rangey1;
    		newNPC.moverangeX2 = rangex2;
    		newNPC.moverangeY2 = rangey2;
    		newNPC.walkingType = WalkingType;
    		newNPC.HP = HP;
    		newNPC.MaxHP = HP;
    		newNPC.MaxHit = 80;
    		if (newNPC.MaxHit < 1) {
    			newNPC.MaxHit = 1;
    		}
    		newNPC.heightLevel = heightLevel;
                    newNPC.Respawns = Respawns;
                    //newNPC.followPlayer = summonedBy;
                    //newNPC.followingPlayer = true;
    		npcs[slot] = newNPC;
    	}
     

  5. #5  
    Crysis
    Guest
    i dont know what im talking bout?

    who the **** you think you are? u registered lyk a few days ago, like 3 posts, and claim firescape is urs when its kiII's

    stfu n go back 2 newbscape kid....
     

  6. #6  
    JavIt
    Guest
    Rofl, I am KiIIer, I will log into it and post right now.
     

  7. #7  
    KiIIer
    Guest
    Hello, how may I own you for leeching today?
     

  8. #8  
    Amroth
    Guest
    How about you **** off, ehh? It is his, I know him, he just gets new accounts often, k?
     

  9. #9  
    Crysis
    Guest
    lemons ive known you from reenscape, i got ur msn aswell, u know i wont leech and me and legend rene made this tbh

    and sorry javait for not believing your kiIIer
     

  10. #10  
    JavIt
    Guest
    Trust me, I really did make this, I don't know if sir pk p00n or whatever took it and told you about it, but these are really the exact methods that I used. Also to make 100% sure that it was a coincidence, the 2000 at the end of the method call is the hp, as used in my method i posted a few posts up.
     

Page 1 of 3 123 LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •