[Ajuda] Imagem na Tela de Login
#1

E aн pessoal.

Bom, venho perguntar, uma coisa impressionante para mim, e pode ser simples pra vocк.
Um membro mandou-me uma PM, pedindo ajuda com isso, eu dei uma procurada no search(em todo o forum), й nгo achei nada relacionado ao mesmo.

Vamos ao que interessa.
Eu entrei em um servidor, й logo no login me deparei com uma imagem de perfeita resoluзгo e visualizaзгo.
Para eu nгo ficar na duvida, й aproveitar, e ajudar ele e todos que estгo com a mesma duvida, resolvi criar esse tуpico.

Fica a duvida, como se cria isso?
R: Tem um tуpico que tem esse Tutorial Hard`.
Tem sim, mais o tutorial, nгo explica como colocar uma imagem do tipo, ensina a colocar uma pequena imagem(TextDraw) que ainda por cima e limitada pelo tamanho.

Alйm da imagem, ser de уtima visualizaзгo, ela e randфmica, ou seja, cada vez que faz login, ela muda de imagem.


Desculpe-me pela mal resoluзгo da imagem, nгo sei por que saiu assim.

Eis a dъvida, como e possнvel criar isso?
Existe algum tutorial, filterscript ou atй include que possibilita a criaзгo disso?
Sу pode criar com essas imagens?
Reply
#2

Olб hard! й possivel sim'-', basta vocк ter o novo zamaroth que й possivel fazer isso

https://sampforum.blast.hk/showthread.php?tid=290640

no topico ele ensina com fazer.

caso vocк queire outra texture, baixa o TXDWorkShop e abra a pasta TXD com ele, lб terб vбrios tipos de texturas / sprites / backGrounds, ai й sу vocк seguir o topico acima!

por via das duvidas fiz um aqui para vocк! mais com outra imagem!

pawn Код:
new Text:Textdraw0;
//
Textdraw0 = TextDrawCreate(0.000000, 1.000000, "loadsc3:loadsc3");
TextDrawBackgroundColor(Textdraw0, 255);
TextDrawFont(Textdraw0, 4);
TextDrawLetterSize(Textdraw0, 0.759999, 1.000000);
TextDrawColor(Textdraw0, -1);
TextDrawSetOutline(Textdraw0, 0);
TextDrawSetProportional(Textdraw0, 1);
TextDrawSetShadow(Textdraw0, 1);
TextDrawUseBox(Textdraw0, 1);
TextDrawBoxColor(Textdraw0, 255);
TextDrawTextSize(Textdraw0, 639.000000, 448.000000);
Espero ter ajudado
Reply
#3

Obrigado ZBT.

Eu desconhecia essa funзгo/filterscript.
Jб adicionei +1 reputation pra vocк.
Reply
#4

Quote:
Originally Posted by zbt
Посмотреть сообщение
Olб hard! й possivel sim'-', basta vocк ter o novo zamaroth que й possivel fazer isso

https://sampforum.blast.hk/showthread.php?tid=290640

no topico ele ensina com fazer.

caso vocк queire outra texture, baixa o TXDWorkShop e abra a pasta TXD com ele, lб terб vбrios tipos de texturas / sprites / backGrounds, ai й sу vocк seguir o topico acima!

por via das duvidas fiz um aqui para vocк! mais com outra imagem!

pawn Код:
new Text:Textdraw0;
//
Textdraw0 = TextDrawCreate(0.000000, 1.000000, "loadsc3:loadsc3");
TextDrawBackgroundColor(Textdraw0, 255);
TextDrawFont(Textdraw0, 4);
TextDrawLetterSize(Textdraw0, 0.759999, 1.000000);
TextDrawColor(Textdraw0, -1);
TextDrawSetOutline(Textdraw0, 0);
TextDrawSetProportional(Textdraw0, 1);
TextDrawSetShadow(Textdraw0, 1);
TextDrawUseBox(Textdraw0, 1);
TextDrawBoxColor(Textdraw0, 255);
TextDrawTextSize(Textdraw0, 639.000000, 448.000000);
Espero ter ajudado
Valew cara ajudou muito!!!
Reply
#5

Conseguir adicionar, mas sу que a imagem fica na frente de tudo
Reply
#6

Coloque a TextDraw no seu GameMode, se for pra fazer nem a do PRINT, coloque a TextDraw no login, й quando ele spawna, ou efetuar o login, destrua/oculte a TextDraw, ou entгo coloque a TextDraw e oculte depois de um tempo, usando SetTimer.

Use a funзгo: TextDrawHideForPlayer para destruн-la/oculta-la. Ou SetTimer.

Espero ter ajudado.
Reply
#7

Quote:
Originally Posted by Hard`
Посмотреть сообщение
Coloque a TextDraw no seu GameMode, se for pra fazer nem a do PRINT, coloque a TextDraw no login, й quando ele spawna, ou efetuar o login, destrua/oculte a TextDraw, ou entгo coloque a TextDraw e oculte depois de um tempo, usando SetTimer.

Use a funзгo: TextDrawHideForPlayer para destruн-la/oculta-la. Ou SetTimer.

Espero ter ajudado.
Poderia postar como ficaria com o exemplo acima.
Reply
#8

Quote:
Originally Posted by aleex995
Посмотреть сообщение
Poderia postar como ficaria com o exemplo acima.
Aqui Esta \/

PHP код:
new Text:Textdraw0// No topo do GM
//----------------------------------------------------------------------//
//Em OnPlayerConnect \/
//---------------------------------------------------------------------//
Textdraw0 TextDrawCreate(0.0000001.000000"loadsc3:loadsc3");
TextDrawBackgroundColor(Textdraw0255);
TextDrawFont(Textdraw04);
TextDrawLetterSize(Textdraw00.7599991.000000);
TextDrawColor(Textdraw0, -1);
TextDrawSetOutline(Textdraw00);
TextDrawSetProportional(Textdraw01);
TextDrawSetShadow(Textdraw01);
TextDrawUseBox(Textdraw01);
TextDrawBoxColor(Textdraw0255);
TextDrawTextSize(Textdraw0639.000000448.000000);
//---------------------------------------------------------------------//
// Em OnPlayerRequestClass(playerid, classid) \/
//---------------------------------------------------------------------//
TextDrawHideForPlayer(playeridTextdraw0); 
Reply
#9

Quote:
Originally Posted by 4LiSs0N
Посмотреть сообщение
Aqui Esta \/

PHP код:
new Text:Textdraw0// No topo do GM
//----------------------------------------------------------------------//
//Em OnPlayerConnect \/
//---------------------------------------------------------------------//
Textdraw0 TextDrawCreate(0.0000001.000000"loadsc3:loadsc3");
TextDrawBackgroundColor(Textdraw0255);
TextDrawFont(Textdraw04);
TextDrawLetterSize(Textdraw00.7599991.000000);
TextDrawColor(Textdraw0, -1);
TextDrawSetOutline(Textdraw00);
TextDrawSetProportional(Textdraw01);
TextDrawSetShadow(Textdraw01);
TextDrawUseBox(Textdraw01);
TextDrawBoxColor(Textdraw0255);
TextDrawTextSize(Textdraw0639.000000448.000000);
//---------------------------------------------------------------------//
// Em OnPlayerRequestClass(playerid, classid) \/
//---------------------------------------------------------------------//
TextDrawHideForPlayer(playeridTextdraw0); 
Cara muito obrigado!!! funcionou perfeito agora!!!
Reply
#10

Quote:
Originally Posted by zbt
Посмотреть сообщение
Olб hard! й possivel sim'-', basta vocк ter o novo zamaroth que й possivel fazer isso

https://sampforum.blast.hk/showthread.php?tid=290640

no topico ele ensina com fazer.

caso vocк queire outra texture, baixa o TXDWorkShop e abra a pasta TXD com ele, lб terб vбrios tipos de texturas / sprites / backGrounds, ai й sу vocк seguir o topico acima!

por via das duvidas fiz um aqui para vocк! mais com outra imagem!

pawn Код:
new Text:Textdraw0;
//
Textdraw0 = TextDrawCreate(0.000000, 1.000000, "loadsc3:loadsc3");
TextDrawBackgroundColor(Textdraw0, 255);
TextDrawFont(Textdraw0, 4);
TextDrawLetterSize(Textdraw0, 0.759999, 1.000000);
TextDrawColor(Textdraw0, -1);
TextDrawSetOutline(Textdraw0, 0);
TextDrawSetProportional(Textdraw0, 1);
TextDrawSetShadow(Textdraw0, 1);
TextDrawUseBox(Textdraw0, 1);
TextDrawBoxColor(Textdraw0, 255);
TextDrawTextSize(Textdraw0, 639.000000, 448.000000);
Espero ter ajudado
Tentei colocar esses Draw ai mais no meu servidor nem abriu nada
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)