Isto é uma pré-visualização de um tema em Hitskin.com
Instalar o tema • Voltar para a ficha do tema
[Tutorial] Faser player ser loja.
+6
LemonSpark36555
LeonM²
DeaN
NeapØn~
Valentine
FilipeJF
10 participantes
Aldeia RPG :: Outras Engines :: Outras :: Eclipse Engine
Página 1 de 2
Página 1 de 2 • 1, 2
[Tutorial] Faser player ser loja.
Aqui vai um script em que você poderá montar sua lojinha de itens, sem mais de logas, vamos
adicione isto a sua main
Add ou substitua:
Adicione a shop.ini
show
- significa mostrar a imagem dos itens se 0 seria mostrar item0.jpg
para todos os itens, se seria um show (itemnumber) item jpg.
dinheiro - o itemnumber da moeda utilizada
preço - é o número de moedas que você começa / precisa comprar o item
[SHOP1] - o 1 é o número do mapa (isso seria uma loja no mapa 1)
max - o número máximo de itens que estão à venda
número de 1 até Max (usado para colocar os itens na loja) - item
Créditos:
Autor desconhecido, por favor se alguem encontrar dizer no tópico.
adicione isto a sua main
- Código:
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
' This sub is used to open/refresh the playershop
Sub shop(map)
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Dim I
Dim a
Dim Number
Dim x
I = 1
Do While I < GetVar("config.ini", "MAX", "MAX_PLAYERS")
If GetPlayerMap(I) = map Then
If 0 + GetVar("shops.ini", "PLAYER", getplayername(I)) <> 0 Then
Call CustomMenuClose(I)
Call CustomMenuShow(I, "SHOP", "\GUI\CUSTOM\shopBG.jpg", 0)
a = 1
Number = 1
x = 54
If GetVar("shops.ini", "CONFIG", "show") = 1 Then
Do While Number <= GetVar("shops.ini", "SHOP" & Trim(GetPlayerMap(I)), "max")
If 0 + GetVar("shops.ini", "SHOP" & Trim(GetPlayerMap(I)), "item" & Number) <> 0 Then
Call CustomMenuPicture(I, Number, "\GUI\CUSTOM\item" & 0 +
GetVar("shops.ini", "SHOP" & Trim(GetPlayerMap(I)), "item" &
Number) & ".jpg", Number * 45 + 133, x)
else
Call CustomMenuPicture(I, Number, "\GUI\CUSTOM\item0.jpg", 1, 1)
End If
a = a + 1
If a > 9 Then
x = x + 40
a = 1
End If
If Number = 0 + GetVar("shops.ini", "SHOP" & Trim(GetPlayerMap(I)), "max") Then
Call CustomMenuPicture(I, Number + 1, "\GUI\CUSTOM\trade.jpg", 490, 310)
Call CustomMenuPicture(I, Number + 2, "\GUI\CUSTOM\exit.jpg", 535, 310)
Call CustomMenuLabel(I, 1, " ", 525, 50, 8, 0, 1, 200, 40)
Call CustomMenuLabel(I, 2, " ", 525, 50, 8, 0, 1, 200, 40)
Call CustomMenuLabel(I, 3, " ", 525, 50, 8, 0, 1, 200, 40)
Call CustomMenuLabel(I, 4, " ", 525, 50, 8, 0, 1, 200, 40)
b = 1
c = 1
d = 50
do while b <= 24
if 0 + GetPlayerInvItemNum(I, b) <> 0 then
Call CustomMenuPicture(I, b + number + 3, "\GUI\CUSTOM\item" & 0 +
GetPlayerInvItemNum(I, b) & ".jpg", c * 35, d)
else
Call CustomMenuPicture(I, b + number + 3, "", b * 45 + 10, 10)
end if
b = b + 1
c = c + 1
if c > 3 then
c = 1
d = d + 35
end if
loop
End If
Number = Number + 1
Loop
Else
Do While Number <= GetVar("shops.ini", "SHOP" & Trim(GetPlayerMap(I)), "max")
Call CustomMenuPicture(I, Number, "\GUI\CUSTOM\item1.jpg", Number * 45 + 133, x)
If Number = 0 + GetVar("shops.ini", "SHOP" & Trim(GetPlayerMap(I)), "max") Then
Call CustomMenuPicture(I, Number + 1, "\GUI\CUSTOM\trade.jpg", 490, 310)
Call CustomMenuPicture(I, Number + 2, "\GUI\CUSTOM\exit.jpg", 535, 310)
Call CustomMenuLabel(I, 1, " ", 525, 50, 8, 0, 1, 200, 40)
Call CustomMenuLabel(I, 2, " ", 525, 50, 8, 0, 1, 200, 40)
Call CustomMenuLabel(I, 3, " ", 525, 50, 8, 0, 1, 200, 40)
Call CustomMenuLabel(I, 4, " ", 525, 50, 8, 0, 1, 200, 40)
b = 1
c = 1
d = 50
do while b <= 24
if 0 + GetPlayerInvItemNum(I, b) <> 0 then
Call CustomMenuPicture(I, b + number + 3, "\GUI\CUSTOM\item0.jpg", c * 35, d)
else
Call CustomMenuPicture(I, b + number + 3, "", b * 45 + 10, 10)
end if
b = b + 1
c = c + 1
if c > 3 then
c = 1
d = d + 35
end if
loop
End If
number = number + 1
a = a + 1
If a > 9 Then
x = x + 40
a = 1
End If
Loop
End If
End If
End If
I = I + 1
Loop
End Sub
- Código:
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
' This sub runs when something on a custom menu is clicked.
Sub MenuScripts(index, Clicked_Index, Menu_Type)
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Dim field_message
Dim menu_title
Dim a
dim temp
menu_title = getplayermenuclicktitle(index)
field_message = getplayermenuclickmsg(index)
' Figure out what type of button was clicked ie picture, textbox, label.
Select Case Menu_Type
Case 1
Select Case menu_title
Case "SHOP"
If Clicked_Index <= 0 + GetVar("shops.ini", "SHOP" & Trim(GetPlayerMap(index)), "max") Then
Call CustomMenuLabel(index, 1, "Name:", 650, 30, 8, 0, 0, 400, 40)
Call CustomMenuLabel(index, 2, "" & getitemname(GetVar("shops.ini",
"SHOP" & Trim(GetPlayerMap(index)), "item" & Clicked_Index)),
590, 50, 8, 0, 2, 200, 40)
Call CustomMenuLabel(index, 3, "Price:", 650, 75, 8, 0, 0, 400, 40)
Call CustomMenuLabel(index, 4, "" & GetVar("shops.ini", "PRICES",
"price" & GetVar("shops.ini", "SHOP" &
Trim(GetPlayerMap(index)), "item" & Clicked_Index)), 570, 95, 8, 0,
2, 200, 40)
Call PutVar("shops.ini", "PLAYER", "" &
GetPlayername(index), 0 + GetVar("shops.ini", "SHOP" &
Trim(GetPlayerMap(index)), "item" & Clicked_Index))
call putVar("shops.ini", "PLAYER", "clicked," & GetPlayerName(index), 0 + Clicked_Index)
Else
If Clicked_Index = GetVar("shops.ini", "SHOP" & Trim(GetPlayerMap(index)), "max") + 1 Then
Money = 0 + getInvItemslot(index, GetVar("shops.ini", "CONFIG",
"money"), GetVar("shops.ini", "PRICES", "price" &
GetVar("shops.ini", "PLAYER", "" & GetPlayerName(index))), 0)
Call giveplayeritemtoslot(index, Money, GetVar("shops.ini", "CONFIG",
"money"), GetPlayerInvItemValue(index, Money) - GetVar("shops.ini",
"PRICES", "price" & GetVar("shops.ini", "PLAYER", "" &
GetPlayerName(index))), 0)
Call giveplayeritemtoslot(index,
getInvItemslot(index, 0, 0, 0), GetVar("shops.ini", "PLAYER", "" &
GetPlayerName(index)), 1, 0)
Call PutVar("shops.ini", "SHOP" &
Trim(GetPlayerMap(index)), "item" & GetVar("shops.ini", "PLAYER",
"clicked," & GetPlayerName(index)), 0)
Call PlayerMsg(index, "Trade succesfull.", 2)
Call Shop(GetPlayerMap(index))
End If
If Clicked_Index = GetVar("shops.ini", "SHOP" & Trim(GetPlayerMap(index)), "max") + 2 Then
call putvar("shops.ini", "PLAYER", GetPlayerName(index), 0)
call CustomMenuClose(index)
end if
If Clicked_Index > GetVar("shops.ini", "SHOP" & Trim(GetPlayerMap(index)), "max") + 2 Then
a = 1
do while a <= 0 + GetVar("shops.ini", "SHOP" & Trim(GetPlayerMap(index)), "max")
if 0 + GetVar("shops.ini", "SHOP" & Trim(GetPlayerMap(index)), "item" & a) = 0 then
money = 0 + getInvItemslot(index, GetVar("shops.ini", "CONFIG", "money"), 0, 0)
if money = 0 then
money = 0 + getInvItemslot(index, 0, 0, 0)
end if
Call giveplayeritemtoslot(index, money, GetVar("shops.ini", "CONFIG",
"money"), GetPlayerInvItemValue(index, money) + GetVar("shops.ini",
"PRICES", "price" & getVar("shops.ini", "PLAYER", "" &
GetPlayername(index))), 0)
tempy = Clicked_Index
tempy = tempy - GetVar("shops.ini", "SHOP" & Trim(GetPlayerMap(index)), "max") - 3
Call putVar("shops.ini", "SHOP" & Trim(GetPlayerMap(index)), "item" & a, GetPlayerInvItemNum(index, tempy))
Call giveplayeritemtoslot(index, tempy, 0, 0, 0)
Call PlayerMsg(index, "Trade succesfull.", 2)
Call Shop(GetPlayerMap(index))
end if
a = a + 1
loop
end if
End If
End Select
Case 2
' FIELD WAS CLICKED
' Player has clicked a text field OK button whos number is clicked_index on the custom menu named menu_title.
Call playermsg(index, "Clicked field number " & clicked_index &
" on the menu named " & menu_title & ". The field text was "
& field_message, 14)
Case 3
Select Case menu_title
Case ""
Select Case clicked_index
Case 3
end Select
end Select
End Select
End Sub
Add ou substitua:
- Código:
call putvar("shops.ini", "PLAYER", getplayername(index), 1)
call shop(GetPlayerMap(index))
Adicione a shop.ini
- Código:
[CONFIG]
show=1
money=1
[PRICES]
price1=100
price2=100
price3=100
[SHOP1]
max=3
item1=1
item2=0
item3=0
[PLAYER]
show
- significa mostrar a imagem dos itens se 0 seria mostrar item0.jpg
para todos os itens, se seria um show (itemnumber) item jpg.
dinheiro - o itemnumber da moeda utilizada
preço - é o número de moedas que você começa / precisa comprar o item
[SHOP1] - o 1 é o número do mapa (isso seria uma loja no mapa 1)
max - o número máximo de itens que estão à venda
número de 1 até Max (usado para colocar os itens na loja) - item
Créditos:
Autor desconhecido, por favor se alguem encontrar dizer no tópico.
_________________
O Equívoco do Sábio - conto na Amazon
FilipeJF- Aldeia Friend
- Medalhas :
Mensagens : 1859
Créditos : 134
Re: [Tutorial] Faser player ser loja.
É bem interessante, apesar de ser visto em vários jogos, como Dofus, Perfect World Etc.
_________________
O Equívoco do Sábio - conto na Amazon
FilipeJF- Aldeia Friend
- Medalhas :
Mensagens : 1859
Créditos : 134
Re: [Tutorial] Faser player ser loja.
agr como eu faço pra montar a loja e ativar ela?
_________________
NeapØn~- Ocasional
- Mensagens : 244
Créditos : 70
Re: [Tutorial] Faser player ser loja.
pelo geito ta maneiro posta uma imagens ia 1+
_________________
Dean, Programador Geral :)
Contato: Skype:matucarvalho e Facebook
The Enze - Vulzt
Shield Block
Contato: Skype:matucarvalho e Facebook
The Enze - Vulzt
Shield Block
Anti-Cheat para jogos de FPS, agora vou adaptar para jogos de RPG principalmente para o RMXP.
www.shieldblock.net
fb.com/shieldblockoficial
Re: [Tutorial] Faser player ser loja.
cara sistema parece ser bom eu fiz um similar para o RMXP
LeonM²- Lenda
- Mensagens : 1802
Créditos : 153
Re: [Tutorial] Faser player ser loja.
muito bom,
isso q meu amigo keria (eli táh fazendo o jogo deli no EP)
+1cred
isso q meu amigo keria (eli táh fazendo o jogo deli no EP)
+1cred
_________________
Meu Fã? Use !
Não gaste seu tempo vivendo as vidas dos outros. Steven Jobs
Visite a Minha Fábrica de Desing!
LemonSpark36555- Membro Ativo
- Mensagens : 270
Créditos : 56
Re: [Tutorial] Faser player ser loja.
Tem como tambem Tipow eu abro uma lojinha em um lugar e fica tipo um carinha com os itens a venda?
E se eu fizer isso como faço para abrir e ver a lojinha?
E se eu fizer isso como faço para abrir e ver a lojinha?
_________________
Posts:
-TUDO Pokemon:
http://www.aldeiarpgbr.com/t1258-quer-criar-um-jogo-pokemon-agente-facilita-e-claro-atualizado-agora-com-battlers-icones-sons-e-ainda-animacoes
-TUDO Pokemon:
http://www.aldeiarpgbr.com/t1258-quer-criar-um-jogo-pokemon-agente-facilita-e-claro-atualizado-agora-com-battlers-icones-sons-e-ainda-animacoes
lordmeninoS- Ocasional
- Mensagens : 226
Créditos : 17
Re: [Tutorial] Faser player ser loja.
Bem, esse sistema eu postei mas não testei ainda. Mas com base no Eclipse, provavelmente será ctrl que terá de apertar.
_________________
O Equívoco do Sábio - conto na Amazon
FilipeJF- Aldeia Friend
- Medalhas :
Mensagens : 1859
Créditos : 134
Página 1 de 2 • 1, 2
Tópicos semelhantes
» Como faser o player usar uma magia e mudar de sprite?
» [erro] bug no tutorial Consertando Defesa do Player ajuda a arrumar?
» [Tutorial/AULA] Cash System Avançado/Loja Cash
» [Resolvido]Erro Player vs Player linha 61 Por favor me ajudem
» [Pedido] Script player atravessar outro player
» [erro] bug no tutorial Consertando Defesa do Player ajuda a arrumar?
» [Tutorial/AULA] Cash System Avançado/Loja Cash
» [Resolvido]Erro Player vs Player linha 61 Por favor me ajudem
» [Pedido] Script player atravessar outro player
Aldeia RPG :: Outras Engines :: Outras :: Eclipse Engine
Página 1 de 2
Permissões neste sub-fórum
Não podes responder a tópicos
|
|