Jump to content

Secrets

Developer
  • Posts

    588
  • Joined

  • Days Won

    45

Everything posted by Secrets

  1. If you really want VS2015, no. You can fall back to VC++ 2010 Express, though. I'm not sure if VS2013 supports Win7. But hey, update your OS. The thing is outdated!
  2. Visual Studio 2015 requires Windows 7 with Service Pack 1 update or later. Make sure you have that update installed.
  3. 501,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ if(gettime(3) == 21 /* Hour */ && (gettime(2) >= 15 && gettime(2) <= 45) /* Minute */ )itemheal rand(45,65),0; },{},{}
  4. Try updating your src and db to latest version of rA and recompile your server.
  5. Hello my friend, thanks for the respond and i know that. however i'm looking for the "EXACT" date of that client. when you hexed it with NEMO it appears in the date with "2015-11-02" so i'm looking for the exact date. Because it's compiled on 2nd of November 2015 but released on 4th. That one is EXACTLY the one you want. There's no 2015-11-02. Do you know where can i find this link? Thank you! It's from kRO patch server. Here's the link. Hey but if i try diff a exe from the ftp kro (example: 2015-11-04aRagexeRE.exe) this only have a size from 4mb, normal if about 12~14mb and Nemo is closed and show very errors.... ¿how is possible obtain 2015-11-04aRagexeRE.exe working in nemo patcher? thank you They are not compatible with NEMO or any diff tool because they are packed exes.
  6. You put OnInit label outside the script block. That broke the script.
  7. Hello my friend, thanks for the respond and i know that. however i'm looking for the "EXACT" date of that client. when you hexed it with NEMO it appears in the date with "2015-11-02" so i'm looking for the exact date. Because it's compiled on 2nd of November 2015 but released on 4th. That one is EXACTLY the one you want. There's no 2015-11-02. Do you know where can i find this link? Thank you! It's from kRO patch server. Here's the link.
  8. Hello my friend, thanks for the respond and i know that. however i'm looking for the "EXACT" date of that client. when you hexed it with NEMO it appears in the date with "2015-11-02" so i'm looking for the exact date. Because it's compiled on 2nd of November 2015 but released on 4th. That one is EXACTLY the one you want. There's no 2015-11-02.
  9. What's being shown in the server log when the NPC loads or a player clicks the NPC? Don't just say `this npc isn't working sir`. That's like going to a doctor and only tell him `I'm not feeling well` without any details. Anyways, I suspect you just copy-paste the script without checking tabs on the script header.
  10. prontera,150,190,4 script PVP Warper 105,{ mes "Hello I can warp you inside the PvP Arena!"; next; mes "Where do you want to go?"; menu "Normal PvP [" + getmapusers("pvp_y_1-2") + " / 40]",normal, "No Party PvP [" + getmapusers("pvp_y_2-2") + " / 40]",np; normal: if (getmapusers("pvp_y_1-2") > 39) { mes "The PvP Arena is full"; close; } warp "pvp_y_1-2",0,0; end; np: if (getmapusers("pvp_y_2-2") > 39) { mes "The PvP Arena is full"; close; } warp "pvp_y_2-2",0,0; end; OnInit: waitingroom "PvP Arena",0; end; } geffen,101,71,5 duplicate(PVP Warper) PVP Warper#gef 105 hugel,88,147,5 duplicate(PVP Warper) PVP Warper#hug 105
  11. Tree of Savior is sucking me in D:. Although, I do find and implement missing items when I'm bored with grinding.
  12. If you see something that's off from official behavior. You can always open an issue on Github. I would love to help! But I dont know where to start =\
  13. Thank you~ And yeah, most people didn't expect me to be this young.
  14. I just saw someone post an introduction thread and I think I should do so. Hello everyone! I'm secretdataz. Some of you might have seen me from the project's commit log. I'm a 18 year-old computer-science student from Thailand. I've been around RO emulator scene since late eAthena-era not long before its death but haven't really contributed or posted anything. Recently, I have a lot of free time so I decided to contribute something back to the emulator community. So there goes dem commits! Finally, I hope to be a new addition to this nice community. Thank you. Ps.My English is not that good. There are a few thing that I can't express in this post ;(
  15. change if( strcharinfo(3) == "prontera" ) { to if( getgroupid() == 1 && strcharinfo(3) == "prontera" ){
  16. 1. it's safe in most case unless you use a heavily modified source. In that case, you have to merge changes if there are some conflicts. 2. You can choose to have them overwritten or not when you merge conflict should one occur. 3. You can use `svn update` command to update your local rAthena or find some UI based tools to do it for you.
  17. Latest change to query_sql happened 3 days ago in this commit. It changes the command's return value when no data is received. Seems like your script relies on query_sql's old behavior. How about changing if(.@gotm_register) into if(!.@gotm_register)
  18. wear it in a RO event for the lulz
  19. Update your source code and recompile your server. I've minified some item scripts by replacing ternary operators with min/max calls which are new script commands implemented recently.
  20. Add these item db entry to your db/import/item_db.txt 50000,Secret_VIP_Pass_Box,Secret VIP Pass Box,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem "Secret_VIP_Pass",2592000; },{},{} 50001,Secret_VIP_Pass,Secret VIP Pass,11,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "sec_in01",0,0; },{},{} Use @item 50000 in your server. If you get an "Unknown Item" apple, double click the apple. Now you'll get another "Unknown Item" apple. Double click that, it'll warp you to "sec_in01" map. If you can repeat these steps, you have added these items server-side. You can now add the item id 50000 into your donation shop. To add these items client-side to make it display as actual items (not apple) please follow this guideline on the wiki. https://rathena.org/wiki/Custom_Items
  21. - script bniactrl -1,{ end; OnClock0700: OnClock1900: //OnClockhhmm: Add your start time here OnBossniaStart: announce "your start message",bc_all; enablenpc "Bossnia Staff#7"; end; OnInit: OnClock1000: OnClock2200: //OnClockhhmm: Add your end time here OnBossniaEnd: announce "end",bc_all; disablenpc "Bossnia Staff#7"; mapwarp "bossnia01","SavePoint",0,0; mapwarp "bossnia02","SavePoint",0,0; mapwarp "bossnia03","SavePoint",0,0; mapwarp "bossnia04","SavePoint",0,0; end; }
  22. You can use rAthena's "default" which is 20130807.
  23. This may help solve your problem. https://rathena.org/board/topic/105174-new-character-black-background/#entry299206
×
×
  • Create New...