ID:142281
 
Code:
loading THMD.dme
GMcodes.dm:3227:error::invalid expression

THMD.dmb - 1 error, 0 warnings (double-click on an error to jump to it)


Problem description:I was trying to delete sounds from my game because rsc weights too much. I deleted all and than compiled. It showed this:
loading THMD.dme
GMcodes.dm:3227:error::invalid expression

THMD.dmb - 1 error, 0 warnings (double-click on an error to jump to it)

my line 3227 in this is first line of:
Reboot()
set category = "Staff"
world << "<B><p align=center><font color=red><u>ATTENTION</u></font><p align=center><b>The Server is being restarted in 30 seconds.<p align=center><b><font color=blue>Your characters will be automatically saved."
sleep(300)
world.Reboot()

Can someone help me please?


Do you have the <code>world.Reboot()</code> proc defined?

If so, do you have Reboot() as a verb?

mob
verb
Reboot()
//Ect...


If yes to both of these, give us some of the code around that line, not just that line. Also, give us the code you used for the Reboot proc.
In response to Hi1
As a future reference, world.Reboot() is a built-in procedure.

As what Hi said, gives us a snippet of the few lines previous from the line that DM gives.
In response to GhostAnime
ChangeWorldName()
set category = "Staff"
if(usr.key=="FiveUSSJ" || usr.key=="FiveUSSJ")
world.name = input("What is the new world name?","Change World Name",world.name)
else
usr<<"Insufficient GM Level to use this command."
ChangeWorldStatus()
set category="Staff"
if(usr.key=="FiveUSSJ" || usr.key=="FiveUSSJ")
world.status = input("What is the new world status?","Change World Status",world.status)
else
usr<<"Insufficient GM Level to use this command."
Announce(message as message)
set category = "Staff"
set name = "Announce"
set desc = "(message) Announce something to all players logged in"
for(var/client/C)
C.mob << "<hr><center><font color=blue><b>Announcement From [src]:</b><br><font color=red><b>[message]</font></center><hr>"
System_Message(message as message)
set category = "Staff"
set name = "System Message"
for(var/client/C)
C.mob << "<b><center>[message]</font>"
Warn_World()
set category="Staff"
if(src.key == "FiveUSSJ")
Reboot()
set category = "Staff"
world << "<B><p align=center><font color=red><u>ATTENTION</u></font><p align=center><b>The Server is being restarted in 30 seconds.<p align=center><b><font color=blue>Your characters will be automatically saved."
sleep(300)
world.Reboot()
Shutdown()
set category = "Staff"
world << "<B><p align=center><font color=red><u>ATTENTION</u></font><p align=center><b>The Server is being Shut Down.<p align=center><b><font color=blue>Thanks you for playing The Hogwarts: Magic Destiny!</font></b>"
sleep(50)
del world
Wear_Prefect_Badge()
set category = "Staff"
src.overlays+='prefect.dmi

But it was working before i deleted sounds :s
In response to Hi1
i dont know, how to check it?
You might have an empty expression inside a () operator.

Like this:
mob
verb
Verb()
() // error line

In response to Jemai1
i dont have something like mob verb reboot o.o
In response to FiveUSSJ
What I mean is that you might have an empty ().

Another example:
mob
verb
Say(msg as text)
if() //error line
view() << msg
In response to FiveUSSJ
        Warn_World()
set category="Staff"
if(src.key == "FiveUSSJ")

There's you problem. An empty if block before the Reboot() verb. That's what's causing the compile-time error.
In response to Kakashi24142
Oh yes! Warn World was just making sound for world so its empty when i deleted it! Thak you very much Kakashi!
In response to FiveUSSJ
Why can't you figure out such a simple thing on your own...? :/
In response to Naokohiro
No need to insult, some people do not know that error lines pointed by DM may be a line off. Someimes, the most obvious object can be impossible to spot if you are searching way too hard.