2009-08-05, 08:25 AM
TotallyStraight Wrote:Nexon probably just did something like
And since vicious hammers add slots, you can re-scroll it because the game thinks it hasn't been scrolled yet.Code:bool CanScrollPendant()
{
if(pendant.slots < 3)
return false;
return true;
}
Since I don't know C coding but I know what youre getting at... Why wouldnt they do this:
C -> Visual Basic (Only language I know ^_^''
Code:
Private Sub ScrollHTPendant()
If Pendant.Slots < 3 Then
Pendant.Scrollable = False
Else
Pendant.Scrollable = True
Endif
End SubCode:
Private Sub ScrollHTPendant()
If Pendant.Slots < 3 and Pendant.Hammered = 0 Then
Pendant.Scrollable = False
Else
Pendant.Scrollable = True
Endif
End Sub
