Jump to content

srhmike

Members
  • Posts

    261
  • Joined

  • Last visited

Everything posted by srhmike

  1. Mechanic + jRO spite + mech = sprite error Edit- Found these files @ https://github.com/zackdreaver/RO-Clientresources/tree/master/data/sprite/Àΰ£Á·/¸öÅë
  2. Yeah, you can encrypt the grf right before you plan to open the server public. Make sure to add your grf into the data.ini also.
  3. Only if you want to, or put in that directory
  4. Awesome, I was just making sure I wasn't missing it somewhere. Ill be keeping an eye out =) Thank you.
  5. Are there any files added currently?
  6. https://rathena.org/board/files/
  7. I dont think you can share cps.dll with 2 clients. But you could make 2 different installs, and the users, depending on their preference, can download which one they want.
  8. Look in the basic interface/collection_bg.bmp
  9. rAthena doesnt support it yet. As far as I know.
  10. - script baselvl_kick_map -1,{ OnInit: .max_level = 35; .map$ = "new_zone01"; setmapflag .map$,mf_loadevent; end; OnPCLoadMapEvent: if ( strcharinfo(3) == .map$ && BaseLevel >= .max_level ) { warp "prontera",150,150; } end; OnPCBaseLvUpEvent: if ( strcharinfo(3) == .map$ && BaseLevel >= .max_level ) { warp "prontera",150,150; } end; }
  11. exchange rate .5 = 1/2 credit, so $10=5 credit exchange rate 5 = 5 credit so $1 = 5 credit
  12. Get rid of the tab between monthly reward and put a space.
  13. hmm wonder what the error says? care to share?
  14. If you would just follow my directions and learn how to fix the errors you are getting you be a lot better off. I'm done spoon feeding. prontera,103,77,5 script Monthly Reward 757,{ // January ~ December Item Lists setarray .ItemID[0],7539,7539,7539,7539,7539,7539,7539,7539,7539,7539,7539,7539; setarray .Amount[0],100,120,130,140,150,160,170,180,190,200,210,20; if( #MonthlyReward != gettime(6) ){ getitem .ItemID[gettime(6)],.Amount[gettime(6)]; set #MonthlyReward,gettime(6); mes "You have grant an item for this month."; }else{ mes "You cant take a reward again this month."; } close; } Notice how I removed line 14 and 15? Because they aren't apart of the script. Line 14 and 15 were user error. Happy ragnaroking, I'm out.
  15. Well, count to line 15 in the script. Remove the Thats your line 15. Its not really hard to troubleshoot if you just actually read the error code. Line 15 means the 15th line in the script. everything after the last curly needs to be deleted. // Line 1 prontera,103,77,5 script Monthly Reward 757,{ // Line 2 January ~ December Item Lists //Line 3 setarray .ItemID[0],7539,7539,7539,7539,7539,7539,7539,7539,7539,7539,7539,7539; //Line 4 setarray .Amount[0],100,120,130,140,150,160,170,180,190,200,210,20; //Line 5 if( #MonthlyReward != gettime(6) ){ //Line 6 getitem .ItemID[gettime(6)],.Amount[gettime(6)]; //Line 7 set #MonthlyReward,gettime(6); //Line 8 mes "You have grant an item for this month."; //Line 9 }else{ //Line 10 mes "You cant take a reward again this month."; //Line 11 } //Line 12 close; //Line 13 } //Line 14 1 //Line 15 Quote
  16. new_3-1,50,113,6 script Willcom Maan 405,{ if( !#Freebies ){ set #Freebies,1; mes "Welcome to Exia Start RO, Here's some rewards"; getitem 1203,1; }else{ mes "You have claim the Reward already."; close; } } Try that.
  17. Are you using a client that supports dressing room? Read above post about getting dressing room pack.
  18. Screenshot the error so i can see the whole error. In the picture i can only see the daily reward error. Its missing a } somewhere. is 1 Quote in the script?
  19. You can copy the ectinfo.txt file and put it into your custom grf. Then you wont have to override the one in data.grf
  20. Make sure its all the way updated after you get the new one. If its corrupt grf, try as you suggested by getting that new kro. Also, you should make grf with https://github.com/zackdreaver/ROenglishRE for your servers grf.
  21. - script dailyreward -1,{ needs to be - script dailyreward -1,{
  22. on daily reward you need your tabs in.
  23. setarray .Prices[0],50000,10000,0,100; // Zeny to remove cards [0], reset [1], rent [2], identify [3] the one that says 10000, change that to your price
×
×
  • Create New...