Jump to content

chiCHI

Members
  • Posts

    35
  • Joined

  • Last visited

Posts posted by chiCHI

  1. Kung wala pa kayo server na lalaruin at gusto muna tumambay para ma test ang mga builds niyo or gusto niyo lang pumugo sa pvp para matanggal ang stress niyo sa buhay, tambay kayo sa test server ko hehe

    Pre-Re Mechanics
    Exp: x10000
    Job: x10000
    Drops (all): 100%
    Warper, Job changer, Healer, PvP warper (nasa turbo_room lahat)
    Website: http://riouragnarok.online
    Cpanel: http://riouragnarok.online/fluxcp
    Singapore based ang server so pwede sa south-east asian players

    Notes:

    Gumamit ng fake email at maglagay ng password na hindi niyo ginagamit sa private accounts niyo like facebook/email/etc.

    Ito ay balak kong i-host nang pang matagalan hangga't may interest pa ako sa pagaaral maging dev ng RO. (server live @02-16-2021)

    Kung may request, feedback or bugs kayo paki PM nalang ako dito at i-ttry kong resolve kaagad.

     

    Download links:

    Latest kRO (required): Download here
    Lite client Download here

     

    Maraming salamat po! /no1

    To admins, kung bawal po mag advertise dito ng server pakitanggal nalang po. Test server lang naman po ito, pero kayo po mag decide and I will oblige. Salamat po.

  2. Hello community, its been a while.

    Anyway after patching my client with WARP, I am getting this error which I have searched in google for about an hour and have learned nothing. I also searched in this forums but to no avail.

    I am using 2015-11-04aRagexe as my client. After patching it with "disable gameguard", this error shows up. Am I missing or do I need to patch something in conjunction with "disable gameguard" for this error to disappear?

    Thanks for any help!

    ro_error1.png

  3. i have a problem with my alt+e (inventory menu) i tried changing luas, but the other one was just too big, it covers half of the screen.. 

    here is my preferred one:

     

    33p32aa.jpg

     

    im using 2012-04-10 client, are the buttons editable in the lub files? can anyone point me to what file to edit? thanks

     

    ps: what does the fourth menu do? and what does it mean in english?

  4. I found a source edit here released by Ind (http://rathena.org/board/user/391-ind/).

    Basically, it converts any item you want to kafrapoints so that it can be used as a currency in cashshops.

     

    here is the link to the orig page: http://www.eathena.ws/board/index.php?showtopic=266916

     

    Somewhat it works when it checks for the item that will be used as a currency (eg: Proof of Donation)

    but when you buy an item, it doesn't deduct anything to that specified currency.

     

    here is the code: 

    
    	if( stristr(nd->name,"ITMCur") ) {//Item Currency
    	int count=0,ind=0,c = 0, cid = pc_readreg(sd,add_str("@RRITMCur"));
    	for(c = 0; c < MAX_INVENTORY; c++)
    	if(sd->status.inventory[c].nameid == cid )
    	count += sd->status.inventory[c].amount;
    	if( count != pc_readaccountreg( sd, "#CASHPOINTS" ) )
    	return 6;
    	ind = pc_search_inventory(sd, cid);
    	if( ind < 0 )//because checking twice is safer...
    	return 6;
    	sd->cashPoints = count;
    	if( sd->cashPoints < vt )
    	return 6;
    	if( pc_delitem(sd, ind, vt, 0, 0, LOG_TYPE_NPC) )//somehow it failed to delete...
    	return 6;
    
    	sd->cashPoints -= vt;
    	if( !pet_create_egg(sd, nameid) )
    	{
    	struct item item_tmp;
    	memset(&item_tmp, 0, sizeof(struct item));
    	item_tmp.nameid = nameid;
    	item_tmp.identify = 1;
    
    
    	pc_additem(sd,&item_tmp, amount, LOG_TYPE_NPC);
    
    	}
    	if(log_config.enable_logs&0x20)
    	log_pick_pc(sd, LOG_TYPE_SCRIPT, amount, NULL);
    	pc_setaccountreg(sd,"#CASHPOINTS",sd->cashPoints);//update shop~
    	return 0;
    	}
    
    	if( stristr(nd->name,"CharCur") ) {//Char Reg Currency (from set REGNAME,1;)
    	const char* charReg = pc_readregstr(sd,add_str("@CharCurrrency$"));
    	int count = pc_readglobalreg(sd,charReg);
    	if( count != pc_readaccountreg( sd, "#CASHPOINTS" ) )//safecheck
    	return 6;
    	sd->cashPoints = count;
    	if( sd->cashPoints < vt )
    	return 6;
    	sd->cashPoints -= vt;
    	pc_setglobalreg(sd,charReg,sd->cashPoints);//update...
    	if( !pet_create_egg(sd, nameid) )//give item...
    	{
    	struct item item_tmp;
    	memset(&item_tmp, 0, sizeof(struct item));
    	item_tmp.nameid = nameid;
    	item_tmp.identify = 1;
    
    	pc_additem(sd,&item_tmp, amount, LOG_TYPE_NPC);
    	}
    	if(log_config.enable_logs&0x20)
    	log_pick_pc(sd, LOG_TYPE_SCRIPT, amount, NULL);
    	pc_setaccountreg(sd,"#CASHPOINTS",sd->cashPoints);//update shop~
    	return 0;
    	}
    	if( stristr(nd->name,"ACCCur") ) {//Account Reg Currency
    	const char* charReg = pc_readregstr(sd,add_str("@AccCurrrency$"));
    	int count = pc_readaccountreg(sd,charReg);
    	if( count != pc_readaccountreg( sd, "#CASHPOINTS" ) )//safecheck
    	return 6;
    	sd->cashPoints = count;
    	if( sd->cashPoints < vt )
    	return 6;
    	sd->cashPoints -= vt;
    	pc_setaccountreg(sd,charReg,sd->cashPoints);//update...
    	if( !pet_create_egg(sd, nameid) )//give item...
    	{
    	struct item item_tmp;
    	memset(&item_tmp, 0, sizeof(struct item));
    	item_tmp.nameid = nameid;
    	item_tmp.identify = 1;
    
    	pc_additem(sd,&item_tmp, amount, LOG_TYPE_NPC);
    	}
    	if(log_config.enable_logs&0x20)
    	log_pick_pc(sd, LOG_TYPE_SCRIPT, amount, NULL);
    	pc_setaccountreg(sd,"#CASHPOINTS",sd->cashPoints);//update shop~
    	return 0;
    	}
    
        if( sd->kafraPoints < points || sd->cashPoints < (vt - points) )
            return 6;
        pc_paycash(sd,vt,points);
    

     

     

    Can somebody help me with this? It would be much appreciated. Thank you so much..

  5. You don't have to look for a web host that is connected with RO, you just need a web host in general. 

     

    With that in mind, there are better places to ask/look such as the WebHosting Talk forum.

     

    However, I am currently with StableHost which has quick support and it is indeed very stable (I've been with them for the past 15 months and never had any downtime). I would recommend the Stable plan under Shared Hosting tab for what you plan on using it for. With this plan, you could also upload/host your lite and full installers in it too.

     

    Disclaimer: I am not affiliated with StableHost in any way except for being a satisfied customer.

     

     

    Hostgator

     

    http://hostgator.com/

     

    Thank you guys for the input, really appreciate them. :) gonna try stablehost!

  6. i have seen and used this script about a year ago, and i'm looking for it again now but i can't find it anywhere.

    the npc has a chatbox on and it displays current player(s) that are in the pvp room

    ex:

     

    PVP Normal [3/20] Players

    then it changes after a few seconds to show the next map

    PVP Nightmare [5/20] Players

     

    anyone have this? thanks very much

     

    EDIT: OMG i posted on a wrong section, forgive me pls :S please move to script requests..tnx

  7. As the title says, whenever i wanna relog, or change account, the exe client would exit after selecting "cancel" from the character select screen. I think it would be a hassle to re-run the patcher and start the client again just to do that..and as far as i can remember it wasn't like this before on earlier clients. Is there a workaround for this?

     

    I'm using Judas' diffed 2012-04-10a client. Thanks for any input!

  8. Another question:

    How I can let only my thor patcher can start RagexeRE.exe? Because I think, If we allow them to open RagexeRE.exe, they will just open RagexeRE.exe and bypass the patch /hum
    How I can add/remove files from .grf files without forcing players to download the .grf files again.

     

     

    - when you diff your client, make sure you don't diff "disable -1rag1 and or -1sak1" so that they can't bypass the patcher. ofcourse they could still bypass it in someway but i think this can be your temporary solution

×
×
  • Create New...