ID:179091
 

its kind of self explanitory

i need to get a snippet on a byondime donation verb
mob/verb/Donate()
var/dimes = input("How many dimes do you want to donate?",,"50")as num
if(!dimes)
usr<<"You cheap son of a.."
else
usr.client.PayDimes(dimes,"Nadrew","For that thing")// DO NOT CHANGE THIS LINE AT ALL =P
In response to Nadrew
Nadrew wrote:
> mob/verb/Donate()
> var/dimes = input("How many dimes do you want to donate?",,"50")as num
> if(!dimes)
> usr<<"You cheap son of a.."
> else
> usr.client.PayDimes(dimes,"Nadrew","For that thing")// DO NOT CHANGE THIS LINE AT ALL =P
>


Tisk tisk, people always get this wrong. You need to include the language they're using like this:

usr.client.PayDimes(dimes,"English","For that thing")

If you don't they might try paying in francs or something.