ID:1284206
 
(See the best response by Akando5959.)
Code:
proc
AutoStartTourny()
if(Tournament== 1)
return
else
world << "<center><font size=3><font color=red><b><center>The World Tournament has begun! you have 2 minutes to enter <br><font size = 1>To join please go to channels"
Tournament = 1
for(var/mob/M in world)
M.verbs += new/mob/Tournament/verb/Enter_Tournament()
M.verbs += new/mob/Tournament/verb/Leave_Tournament()
for(var/mob/Q in Entries)
Entries.Remove(Q)
for(var/mob/S in Winners)
Winners.Remove(S)
spawn(1200)AutoStopTourny()
AutoStopTourny()
world<< "<center><font size= 3>font color=red><b><center>The Tournament entry has now ended."
world<< " <font size = 1><font color=red><b>The Following people are in the tournament."
for(var/mob/M in world)
if(M.tourny)
world<< "[M]"
for(var/mob/M in world)
M.verbs -= new/mob/Tournament/verb/Enter_Tournament()
M.verbs -= new/mob/Tournament/verb/Enter_Tournament()
if(Entries.len < 2)
world<< "Not Enough Players for the Tournament.Tournament is cancelled."
for(var/mob/M in world)
if(M.tourny)
M.loc=locate(140,57,1)
Winners.Remove(M)
Entries.Remove(M)
M.tourny=0
for(var/mob/R in Rewards)
R<< "<font color=green>You have Been Rewarded 80 training Points just for joing the event Also Some Levels."
sleep(5)
R.tp += 80
R.level += rand(30,50)
var/amount = rand(20,30)
while(amount > 0)
R.exp = R.tnl
R.Level_Up()
amount-= 1
sleep(5)
Rewards.Remove(R)
tournament=0
if(cycle==1)
spawn(36000) AutoStartTourney()
return
if(cycle==1)
spawn(36000) AutoStartTourney()
Tournament_AI()


var/Rewards.Remove
var/cycle
var/Tournament = 0
var/tournament = 0
var/match = 0
var/list/Entries = list()
var/list/Winners = list()
mob/var/tmp/tourny=0
var/AutoStartTourney
var/Tournament_AI
var/Rewards


Problem description:
Auto Tournyment.dm:9:error: /mob/Tournament/verb/Enter_Tournament: undefined type path
Auto Tournyment.dm:10:error: /mob/Tournament/verb/Leave_Tournament: undefined type path
Auto Tournyment.dm:23:error: /mob/Tournament/verb/Enter_Tournament: undefined type path
Auto Tournyment.dm:24:error: /mob/Tournament/verb/Enter_Tournament: undefined type path
Auto Tournyment.dm:47:error: AutoStartTourney: undefined proc
Auto Tournyment.dm:50:error: AutoStartTourney: undefined proc
Auto Tournyment.dm:51:error: Tournament_AI: undefined proc
Auto Tournyment.dm:44:error: Rewards.Remove: undefined proc

thoes are the errors
Why did you make a new topic? Do you not know how to edit your posts or reply to a topic?
no
first time using the froums
Did you delete your old topic?
Best response
Are you sure the path is:

mob/Tournament/verb/Enter_Tournament()

and there isn't something else in there like mob/proc/Tournament?

That error message states that basically that path leads to nothing.