Jump to content

Cyro

Members
  • Posts

    1138
  • Joined

  • Last visited

  • Days Won

    30

Everything posted by Cyro

  1. You don't need other login table , second server use same login table , so once you players register an account they can play both servers with one account and different characters
  2. https://github.com/rathena/rathena/wiki/Multiple_Servers
  3. Try creating new user and give global privileges in wild card entry
  4. Give write and read permissions to MySQL user ragnarok on your db table
  5. that's actually weird! map server may load auto vendors but wont let them forced to be in prontera ! kindly recheck and i dont think map server loads @autotrade after you kick map server, correct me if i am wrong
  6. i usually run @kickall @mapexit kickall saves all char data, Then you can map exit without any data loss
  7. Cyro

    FluxCP

    https://rathena.org/thirdpartyservices/
  8. The MySQL server was being shutdown, this happend to me once when i ran out of disk space allotted to mysql db
  9. Go to config/battle/drops.conf Change the values as you want
  10. your server trying to be connected with your mysql database ! recheck you access passwords in config
  11. It makes no sense securing your grf if there is a way to break it!
  12. i believe this caused by typo's in map_index check your map_index.txt or use fresh file
  13. try this - script storage -1,{ OnInit: bindatcmd "storage",strnpcinfo(3)+"::OnSTORAGE",0,99; end; OnSTORAGE: if(getmapflag(strcharinfo(3),mf_gvg)); openstorage; end; }
  14. you might be using custom storage script try checking it from you scripts also paste your groups.conf here try adding "storage: [true, false]" to your players
  15. in src/map/status.c find this line https://github.com/rathena/rathena/blob/master/src/map/status.c#L6546-L6547 if( sc->data[SC_WEDDING] ) val = max( val, 100 ); change value 100 to 1
  16. you error says what you should do
  17. Yes! Since your login server is already online you just need to start char and map server's of second , so doesn't really need other id password for 2nd server , else you can just use another account with gender s and use it for other server( which I usually do)
  18. I didn't notice that! You using md5_hashcheck?
  19. You probably enabled packet obsession which won't allow any client without packet_keys If you want let your players bot Disable packet obsession in src/config/core.h by commenting it , then recompile And diff your client with disable packet obsession For more info check this thread
  20. That means your server not accepting that ip incoming connection, checking your firewall might solve your issues Ps- reviving old posts like from 2012 won't help you much
  21. ALTER TABLE `loginlog` ADD COLUMN `unique_id` bigint(20) unsigned NOT NULL default '0'; please take a backup before you run it
  22. 501,your_box,your box,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "CustomBox"; },{},{} function script CustomBox { if( BaseLevel == 99 ) { .@boxitem = callfunc("F_Rand",4236,4359,4425); getitem .@boxitem,1; } dispbottom "You've gained one kill point! Your total is ["+pk_points+"] kill point(s)."; end; }
  23. prontera,162,190,4 script PvP Warper 651,{ mes .Npc_Name$; mes "Hello!"; switch(select("Free For All PvP:Party PvP:1v1 PvP")) { next; mes .Npc_Name$; case 1: mes "Goodluck!"; specialeffect2 EF_EARTHSPIKE; specialeffect2 EF_DEVIL; specialeffect2 EF_COIN; specialeffect2 EF_SIGHTRASHER; sleep2 1000; warp .Map$[0],0,0; announce strcharinfo(0) +" entered the PVP Room - Free for All.",0; close; break; case 2: if( strcharinfo(1) == "" ) { mes "You must have a party in order to enter!"; close; } mes "Goodluck!"; warp .Map$[1],0,0; announce strcharinfo(0) +" entered the PVP Room - Party vs Party.",0; specialeffect2 EF_EARTHSPIKE; specialeffect2 EF_DEVIL; specialeffect2 EF_COIN; specialeffect2 EF_SIGHTRASHER; sleep2 1000; close; break; case 3: if(getmapusers(.Map$[2]) > 1) { mes "There are people fighting in this map!"; close; } mes "Goodluck!"; specialeffect2 EF_EARTHSPIKE; specialeffect2 EF_DEVIL; specialeffect2 EF_COIN; specialeffect2 EF_SIGHTRASHER; sleep2 1000; warp .Map$[2],0,0; announce strcharinfo(0) +" entered the PVP Room - 1 vs 1.",0; close; break; } end; OnInit: .Npc_Name$ = "[^0000FF "+strnpcinfo(1)+" ^000000]"; setarray .Map$[0],"guild_vs2","guild_vs3","guild_vs1"; end; } //-------exitnpc---free for all guild_vs2,93,50,3 script PvP Exit#0 497,{ // ============================================================== set .@n$,"^0000FF[ PvP Exit ]^000000"; // ============================================================== mes .@n$; mes "PvP exit ??"; next; switch(select("Yes!:No!")) { case 1: warp "prontera",156,191; close; case 2: mes .@n$; mes "Okay bye!"; close; } }
  24. Already recompiled after disabling it? Also make sure your client is diff with disabling packet obsession
×
×
  • Create New...