[HELP]How to put sikuku at /go command

Status
Not open for further replies.
Newbie Spellweaver
Joined
Mar 16, 2007
Messages
57
Reaction score
0
Help me please my players are in demand of putting it in /go command.

Can u help me also on making mobs defence and dodge lower???? please nedd fast reply please????
My server is just new about 1 week. And im new in creating to lol.
 
Just do those step's

Go to your ROSE Evolution File where the Server File is :

Exp: C:\Program Files\Triggersoft\Rose Online Evolution <

And Search of something named [ commands.ini ] <> if you have
command.ini < change it to commands :)

Open It And Post this :

Code:
[LEVELS]
Go=100
Who=100
who2=100
Mute=299
Tele=299
Level=299
LevelUp=100
TeleToMe=299
Save=299
Reload=299
Ann=299
SSpawn=299
Set=299
ESpawn=299
DSpawn=299
DelSpawn=299
Pak=299
Pak2=299
Pakm=299
Info=299
Exp=500
Mon=299
Kick=500
Job=299
Cha=299
Item=299
Drop=299
GiveZuly=299
Npc=299
GiveFairy=299
Move=299
Goto=100
PlayerInfo=500
Give2=299
Ban=500
Ani=299
Summon=299
ReloadQuest=299
Shutdown=500
DQuest=299
IQuest=299
ShopType=100
Stat=299
KillInRange=299
GoToMap=299
Heal=299
ServerInfo=299
TargetInfo=299
Hide=299
Class=100
Monster=299

The 100 = Normal Player can Do the command ,
299 = GM can Only Do the command

so what ever the command you make it 100 normal player's
Can Use It .

now i add /go < you can go :

/go 1 = AP
/go 2 = Zant
/go 3 = Junon
/go 4 = Lunar
/go 5 = Eldon
/go 6 = TG < PVP map

HAVE FUN :jester:
 
Just do those step's

Go to your ROSE Evolution File where the Server File is :

Exp: C:\Program Files\Triggersoft\Rose Online Evolution <

And Search of something named [ commands.ini ] <> if you have
command.ini < change it to commands :)

Open It And Post this :

Code:
[LEVELS]
Go=100
Who=100
who2=100
Mute=299
Tele=299
Level=299
LevelUp=100
TeleToMe=299
Save=299
Reload=299
Ann=299
SSpawn=299
Set=299
ESpawn=299
DSpawn=299
DelSpawn=299
Pak=299
Pak2=299
Pakm=299
Info=299
Exp=500
Mon=299
Kick=500
Job=299
Cha=299
Item=299
Drop=299
GiveZuly=299
Npc=299
GiveFairy=299
Move=299
Goto=100
PlayerInfo=500
Give2=299
Ban=500
Ani=299
Summon=299
ReloadQuest=299
Shutdown=500
DQuest=299
IQuest=299
ShopType=100
Stat=299
KillInRange=299
GoToMap=299
Heal=299
ServerInfo=299
TargetInfo=299
Hide=299
Class=100
Monster=299

The 100 = Normal Player can Do the command ,
299 = GM can Only Do the command

so what ever the command you make it 100 normal player's
Can Use It .

now i add /go < you can go :

/go 1 = AP
/go 2 = Zant
/go 3 = Junon
/go 4 = Lunar
/go 5 = Eldon
/go 6 = TG < PVP map

HAVE FUN :jester:

I thinks he means how to add Sikuku map on the /go shortcut which I dont know.
 
^ MjClarke is right.. Sikuku is not yet implemented in EVO.

And if you like to add maps into your /go command. I think you have to edit your gmcmds.cpp under WorldServer Folder.

Goodluck!
 
u can place it at /go command.
i saw the gm from trident rose having sikuku at /go 7.
and it really works dude please someone teach me!..
 
You can customize your go command in Gmcmds.cpp which in the worldserver source file

Code:
 if(loc == 1) 
        {
            map = 22;
            x = 5098;
            y = 5322;
        } 
        else if(loc == 2) 
        {
            map = 1;
            x = 5240;
            y = 5192;
        } 
        else if (loc == 3) 
        {
            map = 2;
            x = 5516;
            y = 5236;
        }
        else if (loc == 4) 
        {
            map = 51;
            x = 5357;
            y = 5013;
        } 
        else if (loc == 5) 
        {
            map = 61;
            x = 5434;
            y = 4569;
        } 
        else if (loc == 6) 
        {
            map = 6;
            x = 5243;
            y = 5240;
        } 
        [COLOR="DarkOrchid"]else if (loc == 7) 
        {
            map = 65;
            x = 5485;
            y = 5285;
        } [/COLOR]
        else 
        {
            char line0[200] = "Please input a number after the go command, below is a list of places and their appropriate number";
            char line1[200] = "1 = Adventurers plains  |  4 = The city of Eucar";
            char line2[200] = "2 = The city of Zant         |  5 = Xita Refuge";
            char line3[200] = "3 = Junon Polis              |  6 = Training grounds";
            char line4[200] = [COLOR="DarkOrchid"]"7 = Shikaku Prison[/COLOR]       | etc = /go 4";
            SendPM(thisclient, line0);
            SendPM(thisclient, line1);
            SendPM(thisclient, line2);
            SendPM(thisclient, line3);  
            SendPM(thisclient, line4);

Like Here, I have added Shikaku Prison go command which is /go7.
 
You used latest database from osrose before it go down? I'll attach the sql

Edited : I forgot in map there's no 65 id map (Not Shown), but shikaku's exist as long as you use latest osrose.sql
 

Attachments

Status
Not open for further replies.
Back