Thread: oh my..

Results 1 to 5 of 5
  1. #1 oh my.. 
    Registered Member

    Join Date
    Jan 2008
    Posts
    1,328
    Thanks given
    14
    Thanks received
    19
    Rep Power
    416
    Code:
    outStream.createFrameVarSize(104);
    outStream.writeByteC(3);		// command slot (does it matter which one?)
    outStream.writeByteA(1);		// 0 or 1; 1 if command should be placed on top in context menu
    outStream.writeString("Attack");
    outStream.endFrameVarSize();
    if (MagicHandler.itFreezes){
    return;
    }
    
    outStream.createFrameVarSize(104);
    outStream.writeByteC(4); // command slot (does it matter which one?)
    outStream.writeByteA(0); // 0 or 1; 0 if command should be placed on top in context menu
    outStream.writeString("Follow");
    outStream.endFrameVarSize();
    if (MagicHandler.itFreezes){
    return;
    }
    Whenever i freeze someone there frozen and cant click anywhere but as soon as they right click and hit attack/follow then they just walk to the player but they are still frozen. Can anyone help?
    Reply With Quote  
     

  2. #2  
    Banned

    Join Date
    Jun 2008
    Age
    27
    Posts
    2,312
    Thanks given
    485
    Thanks received
    231
    Rep Power
    0
    remove:

    if (MagicHandler.itFreezes){
    return;
    }

    TWICE.
    Reply With Quote  
     

  3. #3  
    Registered Member

    Join Date
    Jan 2008
    Posts
    1,328
    Thanks given
    14
    Thanks received
    19
    Rep Power
    416
    Quote Originally Posted by Jinrake View Post
    remove:

    if (MagicHandler.itFreezes){
    return;
    }

    TWICE.
    So delete both of them?
    Reply With Quote  
     

  4. #4  
    #1 footwear

    Shoes's Avatar
    Join Date
    Aug 2009
    Age
    27
    Posts
    2,612
    Thanks given
    185
    Thanks received
    255
    Rep Power
    579
    He said twice lol, but I don't think that would fix it
    Find the method that makes them walk (not walk on command) and add something like

    Code:
    if (isFrozen) {
    break;
    }


    Spoiler for different picture now:
    Reply With Quote  
     

  5. #5  
    Registered Member

    Join Date
    Jan 2008
    Posts
    1,328
    Thanks given
    14
    Thanks received
    19
    Rep Power
    416
    Quote Originally Posted by shoes48 View Post
    He said twice lol, but I don't think that would fix it
    Find the method that makes them walk (not walk on command) and add something like

    Code:
    if (isFrozen) {
    break;
    }
    Lol it wasn't there when i got the source but i added the
    Code:
    if (MagicHandler.itFreezes){
    return;
    }
    and it worked last time i had this source but now its not working.
    And i'll try what you said
    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

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