Sign in to follow this  
Mclovin

[FIXED] Bugged REALLY COOL Hota Statue that doesn't spawn/is hidden!!!!

Recommended Posts

f4473f042fb5734afa48f1c7dd4bf9d0.png`


Almost not sure if this should be a bug report or a suggestion! this statue is NICE...

The problem in the code that stops this spawning is that it's missing the case for this specific HOTA statue

Spoiler
  1. } else if(this.getTemplateId() == 742) {
  2.                     hotaModel3 = "model.decoration.statue.hota.";
  3.                     builder.append("model.decoration.statue.hota.");
  4.                     switch(this.getAuxData() % 10) {
  5.                     case -9:
  6.                     case 9:
  7.                         builder.append("scorpion.");
  8.                         break;
  9.                     case -8:
  10.                     case 8:
  11.                         builder.append("soldemon.");
  12.                         break;
  13.                     case -7:
  14.                     case 7:
  15.                         builder.append("manfightingbear.");
  16.                         break;
  17.                     case -6:
  18.                     case 6:
  19.                         builder.append("nogump.");
  20.                         break;
  21.                     case -5:
  22.                     case 5:
  23.                         builder.append("ladylake.");
  24.                         break;
  25.                     case -4:
  26.                     case 4:
  27.                         builder.append("blackdragon.");
  28.                         break;
  29.                     case -3:
  30.                     case 3:
  31.                         builder.append("bearfightingbull.");
  32.                         break;
  33.                     case -2:
  34.                     case 2:
  35.                         builder.append("deer.");
  36.                         break;
  37.                     case -1:
  38.                     case 1:
  39.                         builder.append("wolffightingbison.");
  40.                         break;
  41.                     case 0:
  42.                         builder.append("dogsfightingboar.");
  43.                         break;
  44.                     default:
  45.                         builder.append("dogsfightingboar.");
  46.                     }
  47.  
  48.                     builder.append(getMaterialString(this.getMaterial()));
  49.                     builder.append(".");
  50.                     return builder.toString();



 

  • Like 3

Share this post


Link to post
Share on other sites
			} else if(this.getTemplateId() == 742) {
                        hotaModel3 = "model.decoration.statue.hota.";
                        builder.append("model.decoration.statue.hota.");
                        switch(this.getAuxData() % 11) {
			case -10:
                        case 10:
                            builder.append("femalefightinganaconda.");
                            break;
                        case -9:
                        case 9:
                            builder.append("scorpion.");
                            break;
                        case -8:
                        case 8:
                            builder.append("soldemon.");
                            break;
                        case -7:
                        case 7:
                            builder.append("manfightingbear.");
                            break;
                        case -6:
                        case 6:
                            builder.append("nogump.");
                            break;
                        case -5:
                        case 5:
                            builder.append("ladylake.");
                            break;
                        case -4:
                        case 4:
                            builder.append("blackdragon.");
                            break;
                        case -3:
                        case 3:
                            builder.append("bearfightingbull.");
                            break;
                        case -2:
                        case 2:
                            builder.append("deer.");
                            break;
                        case -1:
                        case 1:
                            builder.append("wolffightingbison.");
                            break;
                        case 0:
                            builder.append("dogsfightingboar.");
                            break;
                        default:
                            builder.append("dogsfightingboar.");
                        }
     
                        builder.append(getMaterialString(this.getMaterial()));
                        builder.append(".");
                        return builder.toString();

Fixed version of cases.

Share this post


Link to post
Share on other sites

Bump. Please! Also fix the hota statue colours only spawning as red after so many wins. Would be nice to get a whole range of different colours.

 

@Retrograde@Budda

  • Like 1

Share this post


Link to post
Share on other sites
On 1/4/2017 at 8:14 PM, Rudie said:

Bump. Please! Also fix the hota statue colours only spawning as red after so many wins. Would be nice to get a whole range of different colours.

 

@Retrograde@Budda

 

bump for op and this, its really boring getting the same exact color every single time

Share this post


Link to post
Share on other sites

+1 for red blows.

+1 for man vs snake hota statue

+1 for return the bunny statue too.

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.
Sign in to follow this