ID:144292
 
Code:
var
Tournamenttime
Tournament
mob/var
tmp/finals=1
jounin=1
missingnin=1
hunternin=1
mob/owner
verb
Tournament()
set category = "Staff"
set name = "Tournament"
if(!Chuunintime)
usr<<"You will be teleported to the Tournament host room when it starts"
world<<"<font size=3><font color=red>There will be a Tournament in 5 minutes."
sleep(500)
world<<"<font size=3><font color=red>There will be a Tournament in 4 minutes..."
sleep(500)
world<<"<font size=3><font color=red>There will be a Tournament in 3 minutes..."
sleep(500)
world<<"<font size=3><font color=red>There will be a Tournament in 2 minutes..."
sleep(500)
world<<"<font size=3><font color=red>There will be a Tournament in 1 minute..."
sleep(500)
world<<"<font size=3><font color=red>Tournament has now started..."
tournamenttime=1
usr.loc=locate(50,50,36)
else
world<<"We have a winner"
tournamenttime=0


Problem description:
i am making a tournament for a naruto game but i get 18 error with this code
And the errors are?
In response to A.T.H.K
Admin.dm:817:error:finals :duplicate definition
chuunin.dm:195:error:finals :previous definition
Admin.dm:818:error:jounin :duplicate definition
chuunin.dm:196:error:jounin :previous definition
Admin.dm:819:error:missingnin :duplicate definition
chuunin.dm:197:error:missingnin :previous definition
Admin.dm:820:error:hunternin :duplicate definition
chuunin.dm:198:error:hunternin :previous definition
Admin.dm:839:error:tournamenttime:undefined var
Admin.dm:843:error:tournamenttime:undefined var
BS.dm:2561:error:MakeAkatLeader :duplicate definition
Admin.dm:1476:error:MakeAkatLeader :previous definition
BS.dm:2601:error:MakeSoundLeader :duplicate definition
Admin.dm:1498:error:MakeSoundLeader :previous definition
BS.dm:2610:error:StripOrganization :duplicate definition
Admin.dm:1638:error:StripOrganization :previous definition
chuunin.dm:201:error:Chuuninexam :duplicate definition
Admin.dm:868:error:Chuuninexam :previous definition
In response to Howey
Looks like you have some vars defined multiple times... Read the error messages and try to take them as literal as you can, they are usually self explanitory if you do that.
In response to Howey
hooray