ID:146009
 
Code:
mob/proc/noauto()
switch(alert("Do you want to be booted for using an auto?","Anti-Autoer","Yes","No"))
if("Yes")
src << "Ok..."
del (src)
if("No")
src << "Good job, heres a reward for being an honest player!"
src.Gold += 100
spawn while(1) noauto(src)


Problem description:
its not calling the proc, as you can see would cause a problem...

I still have no clue :(
derek im not sure on this but i think u need to make that alert a src i am not sure if alert is a usr or not
In response to National Guardsmen
National Guardsmen wrote:
derek im not usre on this buti tink u need to make that alert a src not use if alert is a usr or not

WHAT!? lol
In response to Derekjeterisgod
mob/proc/noauto()
switch(alert(src,"Do you want to be booted for using an auto?","Anti-Autoer","Yes","No"))
if("Yes")
src << "Ok..."
del (src)
if("No")
src << "Good job, heres a reward for being an honest player!"
src.Gold += 100
spawn while(1) noauto(src)

this looks like it should work idk what the problem is tho