viewing paste topic/4875- sleep.diff | Diff

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
 src/map/atcommand.c | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)
 
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 50ec913..563e467 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -9361,6 +9361,38 @@ static inline void atcmd_channel_help(int fd, const char *command, bool can_crea
    clif->message(fd,atcmd_output);
    return true;
 }
+
+ACMD(sleep) {
+   if ( map->list[sd->bl.m].flag.pvp || map->list[sd->bl.m].flag.gvg || map->list[sd->bl.m].flag.gvg_castle || map->list[sd->bl.m].flag.battleground ) {
+       clif->message( fd, "Cannot use this command in pvp/gvg/battleground maps." );
+       return false;
+   }
+   else if ( map->list[sd->bl.m].flag.nowarp && map->list[sd->bl.m].flag.nowarpto ) {
+       clif->message( fd, "Cannot use this command in event maps." );
+       return false;
+   }
+   else if ( battle_config.prevent_logout && ( DIFF_TICK( timer->gettick(), sd->canlog_tick ) < battle_config.prevent_logout ) ) {
+       clif->message( fd, "Cannot use this command while in combat." );
+       return false;
+   }
+   else if ( sd->sc.opt1 && sd->sc.opt1 != OPT1_SLEEP ) {
+       clif->message( fd, "Cannot use this command during status ailment" );
+       return false;
+   }
+   else if ( !sd->sc.opt1 ) {
+       status->change_start( NULL, &sd->bl, SC_TRICKDEAD, 10000, 1, 0, 0, 0, 1000, 0 );
+       sd->sc.opt1 = OPT1_SLEEP;
+       clif->message( fd, "You have fallen asleep." );
+   }
+   else {
+       sd->sc.opt1 = 0;
+       clif->emotion( &sd->bl, 45 );
+       status_change_end( &sd->bl, SC_TRICKDEAD, -1 );
+       clif->message( fd, "You have awake." );
+   }
+   return true;
+}
+
 /**
  * Fills the reference of available commands in atcommand DBMap
  **/
@@ -9371,6 +9403,7 @@ void atcommand_basecommands(void) {
     * Command reference list, place the base of your commands here
     **/
    AtCommandInfo atcommand_base[] = {
+       ACMD_DEF(sleep),
        ACMD_DEF2("warp", mapmove),
        ACMD_DEF(where),
        ACMD_DEF(jumpto),
 
Viewed 1295 times, submitted by AnnieRuru.