Jump to content

ossi0110

Community Contributors
  • Content Count

    575
  • Joined

  • Last visited

  • Days Won

    17

Posts posted by ossi0110


  1.  

     

    will this work now? thnx will try it 

     

    uhm it worked before too ^^

    sir ossi got error posted it above

     

     

    you sample.c   plugins makes problems , be sure to run on latest Rev and recompile it befor you make the plugins


  2. remove the    /*  and  */    

     

     

    *///  Old Tuxedo and Wedding Dress, will display the outfit when worn.// ==================================================================/*{	Id: 2338	AegisName: "Wedding_Dress"	Name: "Wedding Dress"	Type: 5	Buy: 43000	Weight: 500	Job: 0xFFFFFFFE	Loc: 16	OnEquipScript: <" sc_start SC_WEDDING,-1,0; ">	OnUnequipScript: <" sc_end SC_WEDDING; ">},*//*{	Id: 7170	AegisName: "Tuxedo"	Name: "Tuxedo"	Type: 5	Buy: 43000	Weight: 10	Job: 0xFFFFFFFE	Gender: 1	Loc: 16	OnEquipScript: <" sc_start SC_WEDDING,-1,0; ">	OnUnequipScript: <" sc_end SC_WEDDING; ">},*///	Custom Items such as wings, etc// =========================================={	Id: 25009	AegisName: "Blue_Animated_Angel_Wings"	Name: "Blue Animated Angel Wings" //Black_Deviling_Wings	Type: 5	Slots: 4	Job: 0xFFFFFFFF	Upper: 63	Gender: 2	Loc: 1	EquipLv: 10	View: 1082},{	Id: 25010	AegisName: "Black_Deviling_Wings"	Name: "Black Deviling Wings"	Type: 5	Slots: 4	Job: 0xFFFFFFFF	Upper: 63	Gender: 2	Loc: 1	EquipLv: 10	View: 1083},)

  3.  

    you can mostly set in the Options of the GRF Tools , what codepage he should use,

     

     

    like

     

    Extract   Unicode 

     

    or

     

    Extract  ANSI

     

    when it was extract unicode >> what language>

    if ANSI >> what lang?

     

     

    Unicode = Korea  = 유저인터페이스

    Ansi =  À¯ÀúÀÎÅÍÆäÀ̽º

     

    i allways use Ansi encoding


  4.  

    Hi Everyone, 

    I using client 2013-08-07aRagexe.exe it make me crash when click the Request button at login.

     

    This Button when click it crash.:

    attachicon.gif11-23-2013 2-58-20 AM.png

     

    Crash Log:

    attachicon.gif11-23-2013 3-00-03 AM.png

     

    Please help, and thanks.

     

     

    This Button DONT WORK,  you cant get it to work atm , because  gravity use it normaly to register on the Homepage , but then its got removed from gravity .

     

    just dont click this button or hex it out of the client .  or wait till the diff is finished what restores the function of this button.


  5. Yes it worked like a charm. The rememaining problem is my buttons are in Korean. I am using the data folder from this revision: https://subversion.assembla.com/svn/client-side-translation/

     

    How do I fix this?

     

     

    Did you added all of the translation Stuff into a GRF?  or are u using it from the Data Folder ?

     

    be sure to set the Diff Correct if u are using  GRF  = Remove Data Folder First .   if u are using Data Folder = Diff  Read Data Folder First.

     

    and be sure to place all in the  Correct folder names 

     

     

    YourRoFolderName/data


  6.  

    fixed those missing tab of ossi msgstring he provided and i encountered  some item not showing when equip on some costumes item, il be checking on some missing sprite on equip and etc.

     

    Not sure what you did , but i just checked the Msgstringtable  from me , there is no tab Missing, all tabs are there


  7. i want to add plugins what do i need to do?

     

    is it just simple as making a

     

    DesktopHerculessrcpluginsautoattack.c

     

    then recompile?

     if you are using windows you can use this guide from the wiki

     

    http://herc.ws/wiki/Building_HPM_Plugin_for_MSVC

     

     

    if you are using Linux

     

    you can follow this guide

     

    http://herc.ws/wiki/Building_HPM_Plugin_for_gcc

     

     

     

    be sure to place the .c  file in the SRC/Plugin folder

     

    and add the plugin to the  conf/plugins.conf file

     

    ../conf/plugins.confplugins_list: [	/* Enable HPMHooking when plugins in use rely on Hooking */	//"HPMHooking",	//"db2sql",	//"sample",	//"other",          "CUSTOMPLUGINNAME",] 

     

     


  8. Hello, everyone, I'm trying to update Yommy's VendSQL plugin manually.

     

    At first I was able to make it work (It executes but the only problem is it doesn't save map name right) then I found out that I'm not currently using the latest revision so I updated it then recompiled it.

     

    Now, I'm getting a crash with the latest revision. :D

     

    Here is the dump file:

     

    http://upaste.me/6a118969fae93db6

     

    Here is the code:

    http://upaste.me/f5de89707bf6148a

     

    It crashes when saving the map name I think, :D

     

    When I haven't updated and recompiled my server it works fine although the map name that it saves for example is something like this ssed. for map prontera.

     

    Thank you in advance guys!

     

    God bless!

     

    you sure the cash comes from the Vending Plugin ?

     

    because the core dump says its your autoloottype  plugin


  9.  

     

    For example if i talk to the npc it will give me 7 days vip service. I try a your post but i have a problem, it does not add another column for other accounts, one column only and if other account talked to the npc, it overwrite the first account.

     

     

    you can update the VIP System with  set ModExp,150;     it changes the value in sql to 150   what you means you got 50% more exp  ( 100% is basic + 50% = 150) so you dont need a query_sql for it

     

    can you make a sample script for that? thanks!

     

    you can try this one ,  its binded over a Function to a item .  I use Vip Tickets for it

     

    just add this into your item what should give the VIP Status

     

    after using the Item you can check your remaining time with  @vip

     

    {	Id: YOUR ITEM ID HERE	AegisName: "VIP Ticket 3D"	Name: "VIP Ticket 3D"	Type: 0	Weight: 10	Job: 0x7FFFFFFF	Script: <"		if(#vip_status >0) {			dispbottom "You allready got a Premium Service Running , Use another one after the Time Runs out.!";			getitem YOUR ITEM ID HERE,1;			end;		}		callfunc "getVIP", 3 * 24 * 3600; //VIP Status for 3 Day , change the 3 into 7  for 7 Days.	">},

     

     

     

    Code will be readded , changing some stuff

  10.  

    Dastgir Pojee already did a convert of party-script-command,  you can try here

     

    Ive tried it already, im having errors in compiling its not updated to the latest revisions..need help to convert it..

     

    Sirs,

     

    Good Day!

     

    Kindly help me convert this source modification compatible with hercules recent revisions coz im having hard time converting it..

     

    Thanks in advance...

     

     

    for the BG diff , try to look a the BG QUEUE System from Hercules , its nearly the same.

     

    I have not tried it since it is on debug mode..Is this feature working now sir as intended?

     

     

     

     

    im using it for my Custom Arena like 2vs2  4vs4  and Guild/Party Arena works pretty good , cant find a error atm


  11.  

     

     

    Did you check the file for loki or rolex launcher inside the folder?

     

    if loki or rolex is available, then setup it first.. then run loki.exe or rolex.exe

    I changed loki launcher.ini to match the exe name and run.

    The error was http://puu.sh/5mmb3.png

     

    can you open yout SaveData/OptionInfo.lub and post it here?

     

    it is located in your RO folder..

    I have changed to use Themon's 2013-08-07 EXE because it gives me no error when I run the EXE.

    However I found some problems.

    - Thief male head sprite is misplaced when sit

    - Izlude map issues. NPC and warps misplaced

    - Unreadable item name and description. (was fine before I updated KRO to the latest version which fixes item compare but introduces this issue)

     

    Problems screenshot: http://puu.sh/5mMIm.jpg

     

     

     

    - Thief male head sprite is misplaced when sit

     

     

     

    seems the data.grf or hairstyles are broken from this client.

     

     

     

    - Izlude map issues. NPC and warps misplaced

     

    i would say, you server is running in Pre-RE mode ?  then you have to replace the Izlude map with the old Izlude map , and generate a new mapcache.dat for the walkable cells in Izlude

     

     

     

    - Unreadable item name and description. (was fine before I updated KRO to the latest version which fixes item compare but introduces this issue) 

     

    this problem is because you updated your KRO to the lastest version ,  this owerwrites the Translated  Iteminfo.lub , just grab a new one from here.

     

    https://subversion.assembla.com/svn/client-side-translation/System/

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.