Thread: Aubury teleport rep+

Page 1 of 2 12 LastLast
Results 1 to 10 of 15
  1. #1 Aubury teleport rep+ 
    Registered Member youer3455's Avatar
    Join Date
    Jun 2009
    Posts
    559
    Thanks given
    11
    Thanks received
    2
    Rep Power
    15
    Code:
    	public void auburyTeleport() {
    		for (int i = 0; i < maxNPCs; i++) {
    			if (npcs[i] == null)
    				continue;
    			npcs[i].clearUpdateFlags();
    
    		}
    		for (int i = 0; i < maxNPCs; i++) {
    			if (npcs[i] != null) {
    				if (npcs[i].npcType == 553) {
    					npcs[i].animNumber = 722;
    					npcs[i].gfx0(148);
    					npcs[i].animUpdateRequired = true;
    					npcs[i].updateRequired = true;
    					npcs[i].forceChat("Senventior Disthine Molenko!");
    				}
    			}
    		}
    	}
    I'm trying to add that and make it so that he teleports i add that to npcHandler

    then i add this to thirdnpcclick

    case 553:
    auburyTeleport();
    break;

    but it doesnt work help please thanks
    Reply With Quote  
     

  2. #2  
    Registered Member Blayzeee's Avatar
    Join Date
    May 2009
    Posts
    216
    Thanks given
    1
    Thanks received
    8
    Rep Power
    23
    Goto npchandler and at thirdnpcclic
    add

    case 553:
    c.getPA().spellTeleport(3109, 3347, 0);
    break;

    change the coords and add a forcechat if you want
    Reply With Quote  
     

  3. #3  
    Registered Member Math Class's Avatar
    Join Date
    Oct 2010
    Age
    28
    Posts
    150
    Thanks given
    27
    Thanks received
    23
    Rep Power
    7
    Why are you using For Loops for this?

    ^Made by Kid Kash.
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Nov 2011
    Posts
    276
    Thanks given
    60
    Thanks received
    5
    Rep Power
    22
    Quote Originally Posted by youer3455 View Post
    Code:
    	
    public void auburyTeleport() {
    					npcs[i].animNumber = 722;
    					npcs[i].gfx0(148);
    					npcs[i].animUpdateRequired = true;
    					npcs[i].updateRequired = true;
    					npcs[i].forceChat("Senventior Disthine Molenko!");
    
    }
    I'm trying to add that and make it so that he teleports i add that to npcHandler

    then i add this to thirdnpcclick

    case 553:
    auburyTeleport();
    break;

    but it doesnt work help please thanks
    that SHOULD work... i'm freakin exhausted so i can't promise it will

    *edit* also without a teleporting method in their without the right coord's it's pointless

    *edit #2* i was wrong, that isn't right, i'll find the correct gfx and give it a shot tomorrow
    Reply With Quote  
     

  5. #5  
    Registered Member youer3455's Avatar
    Join Date
    Jun 2009
    Posts
    559
    Thanks given
    11
    Thanks received
    2
    Rep Power
    15
    yeah so
    Reply With Quote  
     

  6. #6  
    Registered Member youer3455's Avatar
    Join Date
    Jun 2009
    Posts
    559
    Thanks given
    11
    Thanks received
    2
    Rep Power
    15
    bump
    Reply With Quote  
     

  7. #7  
    Registered Member
    Join Date
    Aug 2009
    Posts
    630
    Thanks given
    79
    Thanks received
    24
    Rep Power
    52
    its server.npchandler.auburyTeleport()
    Reply With Quote  
     

  8. #8  
    Shake n Bake

    Organic's Avatar
    Join Date
    Apr 2010
    Posts
    2,499
    Thanks given
    204
    Thanks received
    324
    Rep Power
    588
    NpcH
    Code:
    	public void auburyTeleport(Client c) {
    		for (int i = 0; i < maxNPCs; i++) {
    			if (npcs[i] == null)
    				continue;
    			npcs[i].clearUpdateFlags();
    
    		}
    		for (int i = 0; i < maxNPCs; i++) {
    			if (npcs[i] != null) {
    				if (npcs[i].npcType == 553) {
    					npcs[i].facePlayer(c.playerId);
    					npcs[i].requestAnimation(1818,0);
    					npcs[i].gfx0(343);
    					npcs[i].forceChat("Senventior Disthine Molenko!");
    					npcs[i].animUpdateRequired = true;
    					npcs[i].updateRequired = true;
                       				break;
    				}
    			}
    		}
    	}
    3rdClick

    Code:
    			case 553://aubury
    				Server.npcHandler.auburyTeleport(c);
    				String type = c.playerMagicBook == 0 ? "modern" : "modern";
    				c.getPA().startTeleport(2911, 4832, 0, type);
    				break;
    Tell me if missing anything.

    Just live life at its fullest.

    LOL
    Reply With Quote  
     

  9. Thankful user:


  10. #9  
    Registered Member youer3455's Avatar
    Join Date
    Jun 2009
    Posts
    559
    Thanks given
    11
    Thanks received
    2
    Rep Power
    15
    thanks guys your great
    Reply With Quote  
     

  11. #10  
    Registered Member
    Join Date
    Aug 2009
    Posts
    630
    Thanks given
    79
    Thanks received
    24
    Rep Power
    52
    no problem
    Reply With Quote  
     

Page 1 of 2 12 LastLast

Thread Information
Users Browsing this Thread

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


User Tag List

Similar Threads

  1. Replies: 9
    Last Post: 10-28-2012, 03:15 PM
  2. Aubury Teleport emote/gfx?
    By Herewizard in forum Help
    Replies: 4
    Last Post: 07-23-2012, 12:57 AM
  3. aubury PI
    By badroots in forum Help
    Replies: 7
    Last Post: 10-03-2011, 07:04 AM
  4. teleport rep++
    By sexyrussian in forum Help
    Replies: 0
    Last Post: 05-23-2010, 03:30 AM
  5. aubury runes shop item stock
    By digistr in forum Requests
    Replies: 0
    Last Post: 10-25-2009, 01:06 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •