[code] Misuse of [tps] parser in hyrax

SeriousBlueJewel

Well-Known Member
Nov 5, 2018
1,677
867
During my perusing of the hyrax raider document I noted that the writer, or coder misused the [tps] parser. A parser used for fights. Likely the writer intended for it to be the [singular|] parser. However there would still be some errors that way so here is a list of fixes for them.

hyraxRaider.js Line 455
Code:
[pc.hasCocks 2
        | while your other member[tps
            |s
        ] smack against his cheek
    ].
Fixed (no variable plurality call so I am using [pc.hasCocks 3||].
Code:
[pc.hasCocks 2
        | while your other member[pc.hasCocks 3
            |s
        ] smack against his cheek
    ].
Line 481
Code:
...[pc.hasCocks 2
        |your other member[tps
            |s
        ] make [pc.hasCocks 3
            |themselves
            |itself
        ] at home in the crack of his ass, nestled between the warm domes.
    ]
Fixed (no variable plurality again)
Code:
...[pc.hasCocks 2
        |your other member[pc.hasCocks 3
            |s
        ] make [pc.hasCocks 3
            |themselves
            |itself
        ] at home in the crack of his ass, nestled between the warm domes.
    ]
Line 509 and 515 (yes the text repeats itself on those two lines)
Code:
     ...[pc.hasCocks 2
            | Even the payload from your other cock[tps
                |s
            ] barely registers, simply splattering uneventfully onto his skin and fur.
        ]
Fixed (and you guessed it no variable plurality again)
Code:
        [pc.hasCocks 2
            | Even the payload from your other cock[pc.hasCocks 3
                |s
            ] barely registers, simply splattering uneventfully onto his skin and fur.
        ]
Line 589
Code:
        You have to admit, watching a man grow big milky tits and immediately start fondling and groping them has you pretty turned on! Your [pc.cocks] strain[tps
            |s
        ]
Fixed (now this one has a variable plurality call)
Code:
        You have to admit, watching a man grow big milky tits and immediately start fondling and groping them has you pretty turned on! Your [pc.cocks] strain[s
            |s
        ]
Line 619
Code:
...and your [pc.balls] seem[tps
                |s
            ] to agree!
Fixed ([pc.balls] has variable plurality, despite balls coming in pairs)
Code:
...and your [pc.balls] seem[s
                |s
            ] to agree!
Line 687
Code:
        Your [pc.cocks][pc.hasBalls
            | and [pc.balls]
        ] bounce[tps
            |s
        ]
Fixed (I am assuming this will work, might need a test because the [pc.balls] inside of [pc.hasBalls||]) might make it screwy somehow) (Test would need to be one cocked Steele without balls))
Code:
        Your [pc.cocks][pc.hasBalls
            | and [pc.balls]
        ] bounce[s
            |s
        ]
Line 766
Code:
Your [pc.cocks] grow[tps
        |s
    ] hard at the anticipation
Fixed (easy variable plurality here)
Code:
Your [pc.cocks] grow[s
        |s
    ] hard at the anticipation

Also here is an earlier bug thread with Variable plurality issues
 
  • Like
Reactions: lowercase_donkey