Give_Gold(mob/M in world)
input("How much do you wanna give?","Give"(text as num))
M.gold += num
Problem description:
Admin.dm:17:error:num:undefined var
Admin.dm:16:error::extra argument
ID:262326
![]() Apr 18 2005, 3:11 pm
|
|
Code:
Give_Gold(mob/M in world) Problem description: Admin.dm:17:error:num:undefined var Admin.dm:16:error::extra argument |
![]() Apr 18 2005, 3:31 pm
|
|
You're not using input() correctly. Look it up in the reference(hit F1 while in DM) to see how to use it.
|
Bit Cloud3_0 wrote:
Code: > Give_Gold(mob/M in world) Problem description: mob/verb This should work. i didnt test it out but it looks fine to me. if there are any errors post them and ill fix it. |