SA-MP Forums Archive
[Ajuda] Upar no PayDay e ganhar dinheiro - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Upar no PayDay e ganhar dinheiro (/showthread.php?tid=560138)



Upar no PayDay e ganhar dinheiro - SukMathcuck - 27.01.2015

Olб, queria sabe como posso fazer um cуdigo aquiw.. tipo.. queria que quando no PayDay a pessoa upa(passar para o prуximo nнvel) ganhar dinheiro, mais esse dinheiro seria como? exemplo, novato nнvel 1 ganha 1k($1000) por ter upado para o nнvel 2, e quando eu for nнvel 2 eu upa para o 3, ganhar 1,3k($1300), e para o 4, 1,6k($1600), e assim por diante, mais nгo quero definir isso, pois como vou definir isso quando a pessoa for nнvel 40 por exemplo, atй chegar lб pra definir, afs, demora, entгo, queria saber o que uso para fazer isso automaticamente.. de $300 a $300..


Re: Upar no PayDay e ganhar dinheiro - Ricop522 - 27.01.2015

pawn Code:
bonus = (nivel-1)*300
dinheiro = (1000) + bonus;

/*
 nivel 1:
 bonus = 0*300
 dinheiro = 1000+0
 nivel 2:
 bonus = 1*300
 dinheiro = 1000+300
 nivel 3:
  bonus = 2*300
  dinheiro = 1000+600
*/
acho que й isso, matematica basica hahuaua (se eu n tiver errado)

PS: nesse codigo assumo que o nivel inicial й 1 e nгo 0!
se for 0, faзa um if para nгo ficar negativo.. caso contrario nivel 0 recebera 700$


Re: Upar no PayDay e ganhar dinheiro - SukMathcuck - 27.01.2015

Deu esses erros e nгo consigo consertar afs..

Code:
C:\Documents and Settings\Administrador\Desktop\gamemode\gamemodes\123.pwn(16309) : error 017: undefined symbol "bonus"
C:\Documents and Settings\Administrador\Desktop\gamemode\gamemodes\123.pwn(16309) : error 017: undefined symbol "nivel"
C:\Documents and Settings\Administrador\Desktop\gamemode\gamemodes\123.pwn(16310) : error 017: undefined symbol "dinheiro"
C:\Documents and Settings\Administrador\Desktop\gamemode\gamemodes\123.pwn(16310) : error 017: undefined symbol "bonus"
C:\Documents and Settings\Administrador\Desktop\gamemode\gamemodes\123.pwn(16310) : warning 215: expression has no effect
C:\Documents and Settings\Administrador\Desktop\gamemode\gamemodes\123.pwn(16311) : error 017: undefined symbol "dinheiro"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


5 Errors.



Re: Upar no PayDay e ganhar dinheiro - NexNix - 27.01.2015

Meu jovem, tu nгo criou as variбveis por isso deu erro.