Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cambios en Items de Principiante #576

Merged
merged 6 commits into from
Apr 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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