21 lines
475 B
Text
21 lines
475 B
Text
![]() |
' General Bots Copyright (c) Pragmatismo.io. All rights reserved. Licensed under the AGPL-3.0.
|
||
|
|
||
|
talk "Quer pagar quanto?"
|
||
|
hear ammount
|
||
|
|
||
|
talk "Para onde?"
|
||
|
hear address
|
||
|
|
||
|
if ammount < 5 then
|
||
|
talk "O mínimo que vendo este produto é 5."
|
||
|
else
|
||
|
|
||
|
if address is in "Rio" then
|
||
|
get payment ammount
|
||
|
delivery to address
|
||
|
else
|
||
|
talk "Vou ver se tenho um parceiro para entregar aí e te falo. Eu só entrego no Rio."
|
||
|
end if
|
||
|
end if
|
||
|
|
||
|
talk "Valeu!"
|