Jump to content

BuLaLaKaW

Members
  • Posts

    125
  • Joined

  • Last visited

Everything posted by BuLaLaKaW

  1. do i need to have 2 char server as well or just 2 map server? Login Server A Char Server A Map Server A Login Server B Char Server B Map Server B how to make it?
  2. Hi I would like to have like: set 1: no third jobs set 2: third jobs but at the same time i will be using 1 client how?
  3. why not give that player an item that can do @item command and will check if that is the correct account id what are you planning then ? Item > usable > click > check if account id is correct > ask for item id via input box > go for @item done
  4. na sa atcommands.conf yan check mo sa conf/ folder sample : kick: 0,0 item: 0,0 yan pwede na yan gamitin ng mga players mo, type lang sila @kick or @item
  5. it is very simple, see script command below. *getmonsterinfo(<mob ID>,<type>) This function will look up the monster with the specified ID number in the mob database and return the info set by TYPE argument. It will return -1 if there is no such monster (or the type value is invalid), or "null" if you requested the monster's name. Valid types are listed in const.txt: MOB_NAME 0 MOB_LV 1 MOB_MAXHP 2 MOB_BASEEXP 3 MOB_JOBEXP 4 MOB_ATK1 5 MOB_ATK2 6 MOB_DEF 7 MOB_MDEF 8 MOB_STR 9 MOB_AGI 10 MOB_VIT 11 MOB_INT 12 JOB_DEX 13 MOB_LUK 14 MOB_RANGE 15 MOB_RANGE2 16 MOB_RANGE3 17 MOB_SIZE 18 MOB_RACE 19 MOB_ELEMENT 20 MOB_MODE 21 so you can just replace the part where it will announce the mob id into "+getmonsterinfo(<mob ID>,0)+" thanks for the share! another option is not to let your GM summon any monster at all. imagine summoning 1000 treasure chest
  6. Hi how to change duration of command @duel currently it says 60 mins, I want to change it to 5 mins thanks
  7. you start it by typing ./auto-restarter & then it will start all the servers (map - char - login) then auto check every 10 seconds if one of the server (map - char - login) fails, it auto restarts them as well. PS. I am using Debian 5, hope this is not an issue. Please tell me as well what OS uses rc.local effectively thanks
  8. tried it and this is how my rc.local looks now #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. ./home/RO_User01/updated/rewrite/auto-restarter.sh exit 0 seems not starting the program on reboot. I am using Debian 5 x86, what OS are you using ?
  9. is there any other way of having an additional aura other than this?
  10. HI! I tried to do this http://www.debian-administration.org/articles/28 in order to make my RO autostarts when server reboots accidentally. #!/bin/bash run=1 if [ "$run" -eq 1 ]; then if [ $(ps | grep -e login-server | wc -l) -eq 0 ]; then # Login server down /home/RO_User01/rewrite/login-server_sql & > /dev/null fi if [ $(ps | grep -e char-server | wc -l) -eq 0 ]; then # Char server down /home/RO_User01/rewrite/char-server_sql & > /dev/null fi if [ $(ps | grep -e map-server | wc -l) -eq 0 ]; then # Map server down /home/RO_User01/rewrite/map-server_sql & > /dev/null fi sleep 10 /home/RO_User01/rewrite/auto-restarter.sh start & fi saved it as autorestart.sh , then I issue the command ... chmod 755 /etc/init.d/autorestart.sh then issue this command ... update-rc.d autorestart.sh defaults i thought that if i use this line sleep 10 /home/RO_User01/rewrite/auto-restarter.sh start & fi this will run the auto-restarter.sh and make the whole thing auto run if ever the server shuts down, but did not work. please help.
  11. try to check the "_db" maps, those are small and very nice for PvP ...
  12. used the class restriction script and hopefully this will work as how I edited it. // Baby ONLY if( getarg(0) & 1 ) setarray .@Restrict[getarraysize(.@Restrict)],4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108; // Third Jobs ONLY if( getarg(0) & 2 ) setarray .@Restrict[getarraysize(.@Restrict)],4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087; // Transcendent ONLY if( getarg(0) & 4 ) setarray .@Restrict[getarraysize(.@Restrict)],4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022; // Second Job ONLY if( getarg(0) & 8 ) setarray .@Restrict[getarraysize(.@Restrict)],7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,4047,4048,4049,4051,4052,4211,4212; // First Job ONLY if( getarg(0) & 16 ) setarray .@Restrict[getarraysize(.@Restrict)],1,2,3,4,5,6,24,25,4002,4003,4004,4005,4006,4007,4046,4050; // Novice ONLY if( getarg(0) & 32 ) setarray .@Restrict[getarraysize(.@Restrict)],0,4001,23,4023,4045; // Certain Jobs ( Specific ) ( Specific Your Own Class Restriction ) if( getarg(0) & 64 ) setarray .@Restrict[getarraysize(.@Restrict)],23,26,27; About Banned Items, how to make like an array or some what like Class Restriction? I mean, like for MAP A, here are the items that are banned. And Map B, here's a different set of items that are banned but not banned in Map A. And Map C, here's a different set of items that are banned only in this map thanks
  13. then get falcon first before warg Falcon then Warg OK Warg then Falcon is not OK, you will not get Falcon
  14. sa patch yan ng kRO, try to use a custom Prontera Map, marami sa kabilang site
  15. then you didnt read the thread properly. the creator lost his laptop. and no one has fixed it yet
  16. i did try to change this 512:1 to 512:800 since its the price for apple i guess. then the warning was gone. about players able to farm via zeny, i wonder how can that be possible when the currency use is not zeny. but anyways thanks a lot for the scripts and more power!
  17. nice implementation! thanks for the idea
  18. Currently no...but i think i might update or try make 1 compatible with CashPoint / Zeny later on.... thanks for the update! I think it will not be needed now since your script is more than enough. I have updated it to show several options and found a way to enable multiple of this npc. thanks for the share
  19. for Multi Currency Shop version 4, is it possible that we can use zeny or cash point as currency ? how ?
  20. nice scripts! Currently using the multi currency shop
  21. Requesting for a script that will allow : [1] Multiple Category, like Normal Drops, MVP Drops, Rare Drops, Random Drops, etc. It will show like a list of those Drops - Normal Drops - MVP Drops - Rare Drops - Random Drops - etc. - etc. - etc. <can be configure on how many categories> [2] Can buy either Zeny or Cash Points [3] Can buy multiple items at a time and not restricted to one item at a time Help! Thanks bump
  22. Thanks Bew and Brian! I guess it is solved!
  23. thanks Emistry! but I need something like the streets of prontera alone are novending nochat help
×
×
  • Create New...