Thread: Object teleport isn't working

Results 1 to 2 of 2
  1. #1 Object teleport isn't working 
    Registered Member Mr. Apollo's Avatar
    Join Date
    Oct 2010
    Age
    33
    Posts
    35
    Thanks given
    0
    Thanks received
    0
    Rep Power
    1
    K, i extended my boss minigame and moved the first boss, but the object i want to use to teleport to get to the second boss, and the 5th boss, aren't working.


    The Red key thing and the Magenta key thing.
    Please help.
    Code:
    			if ((objectID == 6373) && (objectX == 3492) && (objectY == 3090))  {
    				if (playerHasItem(1543)) {
    					teleportToX = 2602;
    					teleportToY = 9479;
    				} else {
    					sendMessage("You need a Red key to go down these stairs");
    				}
    			}
    			if (objectID == 2321) {
    				if (playerHasItem(1544)) {
    					teleportToX = 2598;
    					teleportToY = 9495;
    				} else {
    					sendMessage("You need an Orange key to cross.");
    				}
    			}
    			if (objectID == 2303) {
    				if (playerHasItem(1545)) {
    					teleportToX = 2580;
    					teleportToY = 9520;
    				} else {
    					sendMessage("You need a Yellow key to cross.");
    				}
    			}
    			if ((objectID == 1734 && objectX == 2569 && objectY == 9522)) {
    				if (playerHasItem(1546)) {
    					teleportToX = 2687;
    					teleportToY = 9506;
    					sendMessage("Welcome to the Chaos Elemental.");
    					sendMessage("When you get the Magenta key, type ::Kings");
    				} else {
    					sendMessage("You need a Blue key to go up there.");
    				}
    			}
    			if (objectID == 5099) {
    				if (playerHasItem(1545)) {
    					triggerTele(2570, 9527, 0, false);
    					sendMessage("You arrive at the Dagannoth Kings' Lair. Good Luck.");
    				} else {
    					sendMessage("You need a Magenta key to navigate through the tunnel.");
    				}
    			}
    Thanks.
    Reply With Quote  
     

  2. #2  
    Registered Member Mr. Apollo's Avatar
    Join Date
    Oct 2010
    Age
    33
    Posts
    35
    Thanks given
    0
    Thanks received
    0
    Rep Power
    1
    Bump, COME ON, SOMEONE ANSWER PL0X?
    Reply With Quote  
     


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. Object Teleport Code?
    By redbaby92 in forum Help
    Replies: 0
    Last Post: 12-28-2010, 03:27 AM
  2. [PI] Making a Specific Object Teleport [PI]
    By Bomber Run in forum Help
    Replies: 3
    Last Post: 12-09-2010, 02:02 AM
  3. How to make a object teleport you some were
    By D A T A in forum Tutorials
    Replies: 10
    Last Post: 11-25-2009, 03:49 AM
  4. Dodian Object Teleport
    By Logitech in forum Tutorials
    Replies: 2
    Last Post: 05-15-2008, 12:03 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
  •