Thread: Pretty weird glitch [PI]

Results 1 to 6 of 6
  1. #1 Pretty weird glitch [PI] 
    Registered Member
    Join Date
    Dec 2010
    Posts
    710
    Thanks given
    41
    Thanks received
    3
    Rep Power
    0
    Base: [PI]

    Glitch: When i log into my server and go to use bank then it opens up, then i close it everything is ok. now i try to open it second time while i've been logged in and it doesn't do anything same goes with all object also altar, when i pray first time it works second it doesn't, i need to relog for it for bank and altar etc works again. anyone know what should i do?
    Reply With Quote  
     

  2. #2  
    Banned

    Join Date
    Oct 2010
    Posts
    716
    Thanks given
    82
    Thanks received
    131
    Rep Power
    0
    actionHandler.java.

    Probably left out a break or something.
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Dec 2010
    Posts
    710
    Thanks given
    41
    Thanks received
    3
    Rep Power
    0
    this is mine bank things

    Code:
    			/* Bank */
    			case 2213:
    				c.getPA().openUpBank();
    			break;
    Reply With Quote  
     

  4. #4  
    Registered

    Izumi's Avatar
    Join Date
    Jun 2010
    Posts
    2,458
    Thanks given
    240
    Thanks received
    597
    Rep Power
    2463
    Try to walk away and then click the object again. It doesn't work when you're standing right next to the object, right?



    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    Dec 2010
    Posts
    710
    Thanks given
    41
    Thanks received
    3
    Rep Power
    0
    no, sits doesnt work still even though i try from different positions, and no im not using ambients evolved
    Reply With Quote  
     

  6. #6  
    Registered Member

    Join Date
    Aug 2011
    Posts
    2,760
    Thanks given
    297
    Thanks received
    534
    Rep Power
    1596
    Remove Actiontimer in ActionHandler and add this in process() (it's missing)

    Code:
    		if(clickObjectType > 0 && goodDistance(objectX + objectXOffset, objectY + objectYOffset, getX(), getY(), objectDistance)) {
    			if(clickObjectType == 1) {
    				getActions().firstClickObject(objectId, objectX, objectY);
    			}
    			if(clickObjectType == 2) {
    				getActions().secondClickObject(objectId, objectX, objectY);
    			}
    			if(clickObjectType == 3) {
    				getActions().thirdClickObject(objectId, objectX, objectY);
    			}
    		}
    Quote Originally Posted by Aj View Post
    This is not even a tutorial. It's fail for rep. It's fail for life.
    Reply With Quote  
     

  7. Thankful user:



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. [Pi] Weird Glitch?
    By furls in forum Help
    Replies: 3
    Last Post: 11-27-2011, 04:53 PM
  2. Wth is this?lol? Please read pretty weird snippet
    By Floof of light in forum Help
    Replies: 4
    Last Post: 08-08-2011, 04:56 PM
  3. weird glitch in PI
    By blacksh00t in forum Help
    Replies: 4
    Last Post: 08-10-2010, 02:49 AM
  4. Weird glitch
    By QWERTYownz in forum Help
    Replies: 2
    Last Post: 08-05-2010, 08:25 PM
  5. Pretty weird in devo
    By myK- in forum Help
    Replies: 0
    Last Post: 05-04-2009, 04:02 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •