[ES] Criando sistema de votos para tribunal!
4 participantes
MMORPG Brasil :: OPEN SOURCE ENGINES :: Eclipse :: Tutoriais
Página 1 de 1
[ES] Criando sistema de votos para tribunal!
Exatamente isso, acontece o seguinte, um playes que esta sendo indiciado por algum crime cometido no jogo passará por um seção de votos e dependendo od resultado ele pode acabar na prisão
Esse tutorial foi testado somente no Eclipse Stable, + talvez funcione nas versóes anteriores como a 2.7 e a 2.8,
Coloque todo o conteudo abaixo no final da Sub Commands(index) no main.txt.
Agora os comandos!
Use /julgar + nome do player para leva-lo ao jugamento!
Use /juryvote para dar inicio a votação!
Use /jailyes para indicar a prisão do acusado!
Use /jailno para indicar a liberdade do acusado!
Use /juryend para encerrar a votação ou para dar uma pausa!
Use /courtend para ter o resultado do julgamento!
Se ouver algum bug ou alguma duvida me avise. Este tutorial foi tirado do site oficial do eclipse, e foi traduzido e aprimorado por mim Pedro Karlos!
Esse tutorial foi testado somente no Eclipse Stable, + talvez funcione nas versóes anteriores como a 2.7 e a 2.8,
Coloque todo o conteudo abaixo no final da Sub Commands(index) no main.txt.
- Código:
Case "/julgar"
Dim c
Dim Court
For C = 1 To Ubound(textsay)
Court = Court & " " & Textsay(c)
CourtPlayer = FindPlayer(textsay(1))
Next
If CourtPlayer < 1 Then
Call PlayerMsg(Index, "O Player não esta online, ou não existe", WHITE)
Else
If getPlayerAccess(index) >= 4 then
Call PutVar("Court.ini", "Jail", "Player", GetPlayerName(CourtPlayer))
Call PlayerWarp(Index, 18, 10, 11)
Call PlayerWarp(CourtPlayer, 18, 15, 8)
Call PlayerMSG(Courtplayer, "Você esta sendo levado ao tribunal por atos que contradizem a lei.", Yellow)
Call GlobalMSG(Textsay(1) & " esta sendo levadoao tribunal por atos que contradizem a lei", Brightred)
Call Putvar("court.ini", "jail", "start", 1)
Call PutVar("court.ini", "jail", "Yes", 0)
Call Putvar ("court.ini", "jail", "no", 0)
Exit Sub
End If
End If
Exit Sub
Case "/juryvote"
If GetPlayeraccess(index) => 4 then
Call Putvar("court.ini", "jail", "start", 2)
Call MapMSG(18, "Comecem a votar! Por favor votem somente uma vez!", Yellow)
End If
Exit sub
Case "/jailyes"
If GetPLayeraccess(index) >= 0 then
If getPlayerMap(index) = 18 and GetVar("Court.ini", "Jail", "Start") = 2 and GetPlayername(index) <> GetVar("Court.ini", "Jail", "Player") Then
call PutVar("Court.ini", "Jail", "Yes", GetVar("court.ini", "jail", "yes") +1)
Call PlayerMSG(index, "Você votou para a prisão do jogador.", Yellow)
End If
If getPlayerMap(index) = 18 and GetVar("Court.ini", "Jail", "Start") = 1 and GetPlayername(index) <> GetVar("Court.ini", "Jail", "Player") Then
call PLayerMSG(index, "Você não pode votar agora!", Brightred)
End If
If GetPlayername(index) = GetVar("Court.ini", "Jail", "Player") Then
Call Playermsg(index, "O acusado não pode votar por sua liberdade!", Brightred)
End If
End If
Exit Sub
Case "/jailno"
If GetPLayerAccess(index) >= 0 Then
If getPlayerMap(index) = 18 and GetVar("Court.ini", "Jail", "Start") = 2 and GetPlayername(index) <> GetVar("Court.ini", "Jail", "Player") Then
call PutVar("Court.ini", "Jail", "No", GetVar("court.ini", "jail", "No") +1)
Call PlayerMSG(index, "Você votou para a liberdade do jogador!", Yellow)
End If
If getPlayerMap(index) = 18 and GetVar("Court.ini", "Jail", "Start") = 1 and GetPlayername(index) <> GetVar("Court.ini", "Jail", "Player") Then
call PLayerMSG(index, "Você não pode votar agora!", Brightred)
End If
If GetPlayername(index) = GetVar("Court.ini", "Jail", "Player") Then
Call Playermsg(index, "O acusado não pode votar por sua liberdade!", Brightred)
End If
End If
Exit Sub
case "/juryend"
If getplayeraccess(index) >= 4 then
Call Putvar("court.ini", "jail", "start", 1)
Call MapMSG(18, "A votação foi encerrada. Vamos ver os resultados.", Yellow)
End If
Exit Sub
Case "/courtend"
Dim cC
Dim Court2
For CC = 1 To Ubound(textsay)
Court2 = Court2 & " " & Textsay(cc)
CourtPlayer2 = FindPlayer(textsay(1))
Next
If CourtPlayer2 < 1 Then
Call PlayerMsg(Index, "O jogador está offline ou não existe.", WHITE)
Else
If getPlayerAccess(index) >= 4 then
If GetVar("court.ini", "jail", "no") < GetVar("court.ini", "jail", "yes") Then
Call PutVar("court.ini", "jail", "Jail", 1)
End If
If GetVar("court.ini", "jail", "Jail") = 0 Then
Call PlayerMSG(Courtplayer2, "The Jury decided not to Jail you", Brightred)
Call MapMSG(18, "Votes:" & " Yes = " & GetVar("court.ini", "jail", "yes") & " ; No = " & GetVar("court.ini", "jail", "no"), Yellow)
Call MapMSG(18, GetPlayerName(CourtPlayer2) & " não foi preso!", Green)
Call PlayerWarp(CourtPlayer2, 18, 10, 4)
End If
If GetVar("court.ini", "jail", "Jail") = 1 Then
Call PlayerMSG(Courtplayer2, "The Jury decided to put you in Jail >:D", Brightred)
Call MapMSG(18, "Votes:" & " Yes = " & GetVar("court.ini", "jail", "yes") & " ; No = " & GetVar("court.ini", "jail", "no"), Yellow)
Call GlobalMsg(CourtPlayer2 & " has been jailed by the jury!", BRIGHTBLUE)
Call MapMSG(18, GetPlayerName(CourtPlayer2) & " foi preso.", Brightred)
Call PlayerWarp(CourtPlayer2, 801, 13, 11)
End If
Call PutVar("court.ini", "jail", "start", 0)
Call PutVar("Court.ini", "Jail", "Player", 0)
Call PutVar("court.ini", "jail", "Jail", 0)
End If
End If
Exit Sub
Agora os comandos!
Use /julgar + nome do player para leva-lo ao jugamento!
Use /juryvote para dar inicio a votação!
Use /jailyes para indicar a prisão do acusado!
Use /jailno para indicar a liberdade do acusado!
Use /juryend para encerrar a votação ou para dar uma pausa!
Use /courtend para ter o resultado do julgamento!
Se ouver algum bug ou alguma duvida me avise. Este tutorial foi tirado do site oficial do eclipse, e foi traduzido e aprimorado por mim Pedro Karlos!
Última edição por adm.karlos em Seg 24 maio 2010, 21:24, editado 1 vez(es)
Re: [ES] Criando sistema de votos para tribunal!
funciona no elysium???
Bom vou testar, dependendo do Resultado do Uma EDIT
EDIT:
Ah funfo ñ
+ no eclipse funciono 100% mto baum +1 cred
Bom vou testar, dependendo do Resultado do Uma EDIT
EDIT:
Ah funfo ñ
+ no eclipse funciono 100% mto baum +1 cred
Última edição por cristian113 em Dom 25 Abr 2010, 12:34, editado 1 vez(es)
cristian113- Membro
- Mensagens : 141
Re: [ES] Criando sistema de votos para tribunal!
certesa??
testei na elysium engine brasil e n foi!!!
agora no eclipse foi...
embaixo de onde tem q por no elysium???
testei na elysium engine brasil e n foi!!!
agora no eclipse foi...
embaixo de onde tem q por no elysium???
cristian113- Membro
- Mensagens : 141
Re: [ES] Criando sistema de votos para tribunal!
serve tb para /desafiar xD
lucasvivo25- Membro
- Mensagens : 166
Tópicos semelhantes
» como fazer para o sistema de transformação requerir acesso(vip, sistema de 2 vips)
» Criando sistema de Registro PHP + MySQL
» Criando Site para seu DBZ
» [ALL]Criando um Instalador para seu jogo
» Criando um Fundo Para Iniciantes.
» Criando sistema de Registro PHP + MySQL
» Criando Site para seu DBZ
» [ALL]Criando um Instalador para seu jogo
» Criando um Fundo Para Iniciantes.
MMORPG Brasil :: OPEN SOURCE ENGINES :: Eclipse :: Tutoriais
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos
Dom 08 Abr 2018, 18:40 por JorgeZinhoo002
» Ojkjeeeee
Seg 10 Out 2016, 23:19 por Frozen
» Naruto Great Ninja Batle
Dom 09 Out 2016, 14:29 por GuiinhoLP
» Recrutamento de um Designer para jogo de CDZ.
Sex 23 Set 2016, 18:37 por newbie123
» Serviços de suporte maker( Programação , Design , PixelArt ) E Vendas de Jogos
Qui 22 Set 2016, 20:11 por Eduardo
» Serviços de suporte maker( Programação , Design , PixelArt ) E Vendas de Jogos
Qui 22 Set 2016, 20:11 por Eduardo
» Serviços de suporte maker( Programação , Design , PixelArt ) E Vendas de Jogos
Qui 22 Set 2016, 20:09 por Eduardo
» Projeto Dbz
Qua 31 Ago 2016, 23:46 por 157
» Avaliação - Sprites Naruto
Qua 31 Ago 2016, 17:09 por 157
» [Sprites] DBZ (Plix)
Qua 31 Ago 2016, 14:13 por 157
» Super Pack - Bleach V.2
Qua 31 Ago 2016, 13:02 por 157
» [PEDIDO][PROJETO][RECRUTAMENTO] DYNISTYGAMES
Ter 30 Ago 2016, 10:04 por 157
» [PEDIDO][PROJETO][RECRUTAMENTO] DYNISTYGAMES
Ter 30 Ago 2016, 10:03 por 157
» [PEDIDO][PROJETO][RECRUTAMENTO] DYNISTYGAMES
Ter 30 Ago 2016, 10:02 por 157
» [Pedido] Contador de resets na FrmMain
Sáb 13 Ago 2016, 17:45 por killers97
» [Recrutamento]
Qua 10 Ago 2016, 23:09 por Monsters
» Ajuda erro no Cliente e Servidor do EEB 2.6!
Qua 20 Jul 2016, 19:53 por Binholx
» Como criar tilesets para Eclipse Origins 3.0 (POKÉMON)
Qua 29 Jun 2016, 19:46 por Sir Aaron
» Recursos Pokemons
Qua 29 Jun 2016, 19:34 por Sir Aaron
» erro frm flash
Qua 25 maio 2016, 13:51 por vava123
» Pedido - Pack de star wars
Qui 19 maio 2016, 05:06 por edsonpet
» [Ajuda] Sobre como por o servidor on por ip fixo
Ter 17 maio 2016, 16:14 por vava123
» Illusion Dimension - O Misterio do ID: BETA TESTE ONLINE
Sex 06 maio 2016, 20:02 por LksFlorencio
» [NSME] Naruto Shinobi Maker Engine
Qua 23 Mar 2016, 15:11 por luana1457
» Script /base,/casa Igual DBZ Forces
Dom 21 Fev 2016, 07:34 por JorgeZinhoo002
» [Pedido]Colar Tsunade item sprite eclipse origin
Qui 21 Jan 2016, 07:38 por lawllietbr
» [Pedido] Elysium
Sáb 19 Dez 2015, 11:31 por luana1457
» Naruto - Recruta
Ter 15 Dez 2015, 18:40 por Uchiha ~
» [Avaliação] - Kirito from Sword Art Online; Red and Pikachu from Pokemon.
Qua 25 Nov 2015, 13:43 por Thanakii
» [Avaliação] - Kenpachi Zaraki from Bleach; Libra Shiryu From Saint Seiya.
Qua 25 Nov 2015, 12:55 por Thanakii
» Demonstração de Sprites (Á VENDA!)
Qua 25 Nov 2015, 12:40 por Thanakii
» [Sistema de Reset]Para Eclipse .
Ter 24 Nov 2015, 16:51 por VithorUchi
» Cada Guild Nascer em Certo Mapa
Qui 12 Nov 2015, 06:13 por fabiofeijó_HIT
» Dragon Ball z Fusion A Grande Volta
Qui 29 Out 2015, 15:17 por fabiofeijó_HIT
» Ajuda com Ip fixo
Seg 26 Out 2015, 16:07 por GalaxyHells15
» Como Fazer um GUI no Eclipse Origins
Dom 18 Out 2015, 22:10 por Jeanleee
» Shisui Susanoo
Dom 18 Out 2015, 20:23 por Jeanleee
» Fantasy Art Online
Dom 18 Out 2015, 16:41 por daviih123
» Ajuda !!
Seg 05 Out 2015, 12:13 por andersonzika
» como passar o usuário e senha para o MainMenu?
Seg 28 Set 2015, 22:03 por Bëzerk
» Ru time ero 13 Type mismatch
Seg 28 Set 2015, 09:08 por andredarle
» Jarvis 1.3 Download
Qua 23 Set 2015, 18:42 por soares125
» [Avaliação/Disponibilização]Árvore 64x64
Qua 23 Set 2015, 15:15 por Over~
» Mlk's Zikas Signatures
Ter 22 Set 2015, 21:15 por Aikawa Reborn'
» Pedido de Sistemas
Dom 20 Set 2015, 18:05 por cleyton_05
» [AjudaEEB]Gerador de EXP
Qua 16 Set 2015, 14:04 por Over~
» [Avaliar] Base, Humano e Goblin.
Seg 14 Set 2015, 22:51 por .iBlaz3.
» Fabrica do Tio Cronos!
Dom 13 Set 2015, 21:31 por [ADM]Cronos
» [PixelArt] Minion - Meu malvado favorito
Dom 13 Set 2015, 12:51 por [ADM]Cronos
» [Avaliar] Goku Dragon Ball Z
Qua 05 Ago 2015, 21:36 por Setrux