Skip to content

Commit

Permalink
Merge pull request #576 from ao-org/Update-Items-Principiantes
Browse files Browse the repository at this point in the history
Cambios en Items de Principiante
  • Loading branch information
RecoX authored Apr 30, 2024
2 parents 0725b0e + ea7a588 commit 4fec15b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions Codigo/TCP.bas
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Sub RellenarInventario(ByVal UserIndex As String)
126 Select Case .clase

Case e_Class.Mage, e_Class.Cleric, e_Class.Druid, e_Class.Bard, e_Class.Paladin, e_Class.Bandit, e_Class.Assasin
128 .Stats.UserHechizos(1) = 291 ' Onda mágica
128 .Stats.UserHechizos(1) = 1 ' Dardo mágico


End Select
Expand Down Expand Up @@ -181,9 +181,13 @@ Sub RellenarInventario(ByVal UserIndex As String)
148 .invent.Object(NumItems).ObjIndex = 4334 ' Pocion violeta
150 .invent.Object(NumItems).amount = 50
152 NumItems = NumItems + 1

.invent.Object(NumItems).ObjIndex = 3791 ' Pasaje a Jourmut
.invent.Object(NumItems).amount = 2
NumItems = NumItems + 1

' Armas
154 Select Case .clase
Select Case .clase
Case e_Class.Cleric
.invent.Object(NumItems).ObjIndex = 3686 ' Daga del Principiante
.invent.Object(NumItems).amount = 1
Expand Down Expand Up @@ -224,6 +228,7 @@ Sub RellenarInventario(ByVal UserIndex As String)
.invent.Object(NumItems).amount = 1
NumItems = NumItems + 1

.invent.Object(NumItems).ObjIndex = 3491 ' Arco del principiante
.invent.Object(NumItems).amount = 1
NumItems = NumItems + 1

Expand Down Expand Up @@ -296,6 +301,9 @@ Sub RellenarInventario(ByVal UserIndex As String)
.invent.Object(NumItems).ObjIndex = 3492 ' Flecha del Principiante
.invent.Object(NumItems).amount = 300
NumItems = NumItems + 1
.invent.Object(NumItems).ObjIndex = 3686 ' Daga del Principiante
.invent.Object(NumItems).amount = 1
NumItems = NumItems + 1

Case e_Class.Thief
.invent.Object(NumItems).ObjIndex = 3686 ' Daga del Principiante
Expand Down

0 comments on commit 4fec15b

Please sign in to comment.