mob/DM
verb
set_density(d=1 as num)
set name = "set density"
density = d
This snipet of code is an exmaple on default arguments from the DM Guide(chapter 4.9). I'm having trouble understanding what the difference between the above and this is...
mob/DM
verb
set_density(d as num)
set name = "set density"
density = d
The DM Guide is great but I didn't find it too clear on this. Can someone please explain to me the purpose of the latter argument?
-Doh