Thread: [Ruse] Pets bug fix

Results 1 to 8 of 8
  1. #1 [Ruse] Pets bug fix 
    Banned

    Join Date
    Jul 2015
    Posts
    610
    Thanks given
    521
    Thanks received
    660
    Rep Power
    0
    Keep being asked for the fix. Basically, when having a pet Tormented demon or Frost dragon pet, all Tormented demons and Frost dragons will actually transform into their pet versions.
    To fix, replace these two cases in your client's NPCDef:

    Code:
    	case 3047:
    			npc.name = "Frost dragon";
    			npc.combatLevel = 166;
    			npc.standAnim = 13156;
    			npc.walkAnim = 13157;
    			npc.turn180AnimIndex = -1;
    			npc.turn90CCWAnimIndex = -1;
    			npc.turn90CWAnimIndex = -1;
    			//npc.type = 51;
    			npc.degreesToTurn = 32 ;
    			npc.models = new int[] {56767, 55294};
    			npc.actions = new String[5];
    			npc.actions[0] = "Pick-up";
    			npc.sizeY = 72;
    			npc.sizeXZ = 72;
    			npc.squaresNeeded = 2;
    			break;
    
    		case 3048:
    			npc.models = new int[]{44733};
    			npc.name = "Tormented demon";
    			npc.combatLevel = 450;
    			npc.standAnim = 10921;
    			npc.walkAnim = 10920;
    			npc.turn180AnimIndex = -1;
    			npc.turn90CCWAnimIndex = -1;
    			npc.turn90CWAnimIndex = -1;
    		//	npc.type = 8349;
    			npc.degreesToTurn = 32;
    			npc.actions = new String[5];
    			npc.actions[0] = "Pick-up";
    			npc.sizeY = 60;
    			npc.sizeXZ = 60;
    			npc.squaresNeeded = 2;
    			break;
    Quote Originally Posted by NextGen View Post
    so i have a little problem when people use pets in server it will turn all npc to pets.

    So example if you use a frost dragon pet it will turn all frost dragons to pets in server
    Reply With Quote  
     

  2. Thankful user:


  3. #2  
    Extreme Donator Market Banned Market Banned



    Join Date
    Aug 2011
    Age
    25
    Posts
    3,596
    Thanks given
    1,403
    Thanks received
    1,619
    Rep Power
    5000
    Haven't used your release yet but thanks for this, will come in handy if I do use it

    [Only registered and activated users can see links. ]

    Discord: Roy#2382

    Reply With Quote  
     

  4. #3  
    Registered Member
    Join Date
    Apr 2014
    Posts
    233
    Thanks given
    35
    Thanks received
    49
    Rep Power
    14
    Thanks for sharing the fix.
    Reply With Quote  
     

  5. #4  
    Registered Member NextGen's Avatar
    Join Date
    Oct 2015
    Posts
    112
    Thanks given
    8
    Thanks received
    5
    Rep Power
    10
    Quote Originally Posted by Swiffy View Post
    Keep being asked for the fix. Basically, when having a pet Tormented demon or Frost dragon pet, all Tormented demons and Frost dragons will actually transform into their pet versions.
    To fix, replace these two cases in your client's NPCDef:

    Code:
    	case 3047:
    			npc.name = "Frost dragon";
    			npc.combatLevel = 166;
    			npc.standAnim = 13156;
    			npc.walkAnim = 13157;
    			npc.turn180AnimIndex = -1;
    			npc.turn90CCWAnimIndex = -1;
    			npc.turn90CWAnimIndex = -1;
    			//npc.type = 51;
    			npc.degreesToTurn = 32 ;
    			npc.models = new int[] {56767, 55294};
    			npc.actions = new String[5];
    			npc.actions[0] = "Pick-up";
    			npc.sizeY = 72;
    			npc.sizeXZ = 72;
    			npc.squaresNeeded = 2;
    			break;
    
    		case 3048:
    			npc.models = new int[]{44733};
    			npc.name = "Tormented demon";
    			npc.combatLevel = 450;
    			npc.standAnim = 10921;
    			npc.walkAnim = 10920;
    			npc.turn180AnimIndex = -1;
    			npc.turn90CCWAnimIndex = -1;
    			npc.turn90CWAnimIndex = -1;
    		//	npc.type = 8349;
    			npc.degreesToTurn = 32;
    			npc.actions = new String[5];
    			npc.actions[0] = "Pick-up";
    			npc.sizeY = 60;
    			npc.sizeXZ = 60;
    			npc.squaresNeeded = 2;
    			break;


    Thanks so much man can i donate to you paid someone $30 to fix and scammed me lol
    Reply With Quote  
     

  6. #5  
    Middleman Services
    Louis Vuitton's Avatar
    Join Date
    Oct 2014
    Posts
    491
    Thanks given
    53
    Thanks received
    66
    Rep Power
    30
    Quote Originally Posted by Swiffy View Post
    Keep being asked for the fix. Basically, when having a pet Tormented demon or Frost dragon pet, all Tormented demons and Frost dragons will actually transform into their pet versions.
    To fix, replace these two cases in your client's NPCDef:

    Code:
    	case 3047:
    			npc.name = "Frost dragon";
    			npc.combatLevel = 166;
    			npc.standAnim = 13156;
    			npc.walkAnim = 13157;
    			npc.turn180AnimIndex = -1;
    			npc.turn90CCWAnimIndex = -1;
    			npc.turn90CWAnimIndex = -1;
    			//npc.type = 51;
    			npc.degreesToTurn = 32 ;
    			npc.models = new int[] {56767, 55294};
    			npc.actions = new String[5];
    			npc.actions[0] = "Pick-up";
    			npc.sizeY = 72;
    			npc.sizeXZ = 72;
    			npc.squaresNeeded = 2;
    			break;
    
    		case 3048:
    			npc.models = new int[]{44733};
    			npc.name = "Tormented demon";
    			npc.combatLevel = 450;
    			npc.standAnim = 10921;
    			npc.walkAnim = 10920;
    			npc.turn180AnimIndex = -1;
    			npc.turn90CCWAnimIndex = -1;
    			npc.turn90CWAnimIndex = -1;
    		//	npc.type = 8349;
    			npc.degreesToTurn = 32;
    			npc.actions = new String[5];
    			npc.actions[0] = "Pick-up";
    			npc.sizeY = 60;
    			npc.sizeXZ = 60;
    			npc.squaresNeeded = 2;
    			break;
    nice swiffy, pm me sometimes _
    Reply With Quote  
     

  7. #6  
    Registered Member


    Join Date
    Aug 2014
    Posts
    645
    Thanks given
    158
    Thanks received
    400
    Rep Power
    5000
    Gunna come in handy to everyone that uses Ruse, good job Swiffy.
    Reply With Quote  
     

  8. #7  
    ...
    Ruon's Avatar
    Join Date
    Jul 2015
    Posts
    150
    Thanks given
    15
    Thanks received
    22
    Rep Power
    13
    Thank you for this
    Reply With Quote  
     

  9. #8  
    Ask me how I'm doing

    .NF.'s Avatar
    Join Date
    Aug 2015
    Age
    28
    Posts
    2,165
    Thanks given
    285
    Thanks received
    612
    Discord
    View profile
    Rep Power
    501
    Should help all who are using your source. Thank you.

    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. Replies: 2
    Last Post: 11-21-2015, 11:02 PM
  2. Pets bug in ruse need to know how to fix
    By NextGen in forum Help
    Replies: 8
    Last Post: 11-21-2015, 08:11 PM
  3. Replies: 80
    Last Post: 11-30-2008, 12:54 AM
  4. [TUT]herblore bug fix in testscape
    By lattmjolk1 in forum Tutorials
    Replies: 1
    Last Post: 06-19-2007, 03:14 PM
  5. NPC Magic Distance Bug Fix
    By Zekkalkan in forum Tutorials
    Replies: 5
    Last Post: 05-06-2007, 07:21 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
  •