ID:179844
 
How would I go about making a verb that lets the player deposit dimes into my acount?
TK6000 wrote:
How would I go about making a verb that lets the player deposit dimes into my acount?


You would use the PayDimes() proc


EXAMPLE OF PAYDIMES
mob/verb/Donate()
var/Dimes = input("How many dimes?")as num//Asks them how many dimes and only lets them use numbers
client.PayDimes(Dimes,"Nadrew","Sweet you got some dimes")


Thats all.
In response to Nadrew
thanks
In response to TK6000
but it says DBZ RPG v2.dm:260: Inconsistent indentation.
DBZ RPG v2.dm:261: Inconsistent indentation. how come?
In response to TK6000
Because your indentation is inconsistant. Look it up in the FAQ for an explenation.
In response to Foomer
never mind