summaryrefslogblamecommitdiff
path: root/src/map/dummy.c
blob: ae579b7715e613d66d1fc88aa2b8ea5360db995e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                         























                                     
// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// Copyright (c) 2014 Evol developers

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "../../../common/HPMi.h"
#include "../../../common/malloc.h"
#include "../../../common/mmo.h"
#include "../../../common/socket.h"
#include "../../../common/strlib.h"
#include "../../../map/clif.h"
#include "../../../map/pc.h"
#include "../../../map/script.h"

void showNotImplimented()
{
    ShowWarning("Not implimented\n");
}

BUILDIN(dummy)
{
    showNotImplimented();
    return true;
}

BUILDIN(dummyStr)
{
    showNotImplimented();
    script_pushconststr(st, "");
    return true;
}

BUILDIN(dummyInt)
{
    showNotImplimented();
    script_pushint(st, 0);
    return true;
}