-
Posts
513 -
Joined
-
Last visited
-
Days Won
5
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Ninja
-
Hi rAthena, I'm currently studying how the weapon forging process works in rAthena. My area of interests are: 1. How does it work? 2. How does it know who made it? 3. How does it know that the item's uniqueness? [other question] 4. How to allow more than 4 slots of items? for starters, I've snooped through some database stuff and found a lead on the script that the forging hammers (i.e. oridecon_hammer,etc.) are using and I saw produce 1 - 3. Can someone help me on this?
-
Hi, I was thinking of going back to source modding and as the title says, can someone create a source solution compatible with VS2015? It will be very helpful. -Jezznar
-
Hi, as the title says, has anyone seen one? I remember I was using one way back but I can't remember what was the npc script's name.
-
try looking at the "edited" line of the first post.
-
it is the 0x094B,19,wanttoconnection,2:6:10:14:18. base on your screenshots. the character selection was different to a regular one. have you check your mmo.h? if it match with 20120410 possibly for having an invalid account_id (p:0x094b,l:19). try to create a new character with _M/_F then just edit the sql>ragnarok>table>login>goup field to 99 or if you insist,do this: open up your mysql and browse through ragnarok>tables then query the login table. find your username and change the account_id to anything that's more than 2000000. be sure to set the group to 99 if you want GM-level access. and yes. I have tried it.
-
been a bit of a long time since i've coded. guess i'll be coming back and sorry for the ones that I wasnt able to help with.
-
PacketParser - Yommys Amazing Ragnarok Packet Analyzer Framework
Ninja replied to Yommy's topic in Project Releases
this is awesome. I can just write my own plugin to do some stea.. I mean more awesome things! -
I think he means what to do with it. anyway here's what you do. 1. save it as <name>.txt inside /rAthena/trunk/npc/custom 2. edit scripts_custom.conf and add npc: npc/custom/<name>.txt 3. run your server, no need to recompile. 4. try the command.
-
thanks
-
actually sobrang dali. nasa wikipage ang stepbystep procedure. can you show a screeny of your prob?
-
let me have a little guess. you forgot to initialize the value for: $guessrounds and another thing that's bothering me is: else if ($DisguiseRound < $guessrounds-10) and your code does set $DisguiseRound, $DisguiseRound + 1 everytime a round finishes so basically, your code skips 'next round' because else if ($DisguiseRound < $guessrounds-10) is never true. just my little guess though. dunno if this'll work =P just a try on fixing this. I've set $guessrounds to 10. phtownall,182,199,4 script Disguise NPC 794,{ if (!$guessbegin) { mes "^3399FF[Disguise NPC]^000000"; mes "The event is going to start soon!"; close; } end; onstart: set $guessbegin, 1; set .DisguiseWon, 0; set $guessrounds, 10; if (!$DisguiseRound) { npctalk "Alright. Let's get it over with ~.~ "; sleep 4000; npctalk "But first I will explain to you how to play the game."; sleep 6000; npctalk "I am going to disguise into a random monster."; sleep 5000; npctalk "You have to guess the monster's name and shout it out."; sleep 5000; npctalk "Don't bother about the use of capital and small initial letters."; sleep 8000; npctalk "Now get ready."; sleep 5000; } //else if ($DisguiseRound < $guessrounds-10) else if ($DisguiseRound < $guessrounds) { npctalk "Get ready for the next round."; setnpctimer 0; sleep 8000; } else { npctalk "Last round now!"; sleep 2000; npctalk "Get ready."; sleep 6000; } do { set .@guessrepeat, 0; set $monster, 1000 + rand(1,950); for (set .@k, 0; .@k <getarraysize($Forbidden); set .@k, .@k+1) { if ($monster == $Forbidden[.@k]) { set .@guessrepeat, 1; break; } } } while (.@guessrepeat); setnpctimer 0; initnpctimer; setnpcdisplay "Disguise NPC",$monster; set $MonsterName$, strmobinfo(1,$monster); defpattern 1, "([^:]+):.*\\s"+$MonsterName$+"(.*)", "winround"; activatepset 1; npctalk "What's my name?"; sleep 3000; npctalk "Di mo alam?"; sleep 2000; npctalk "Balu meh?"; end; OnTimer10000: if (!.DisguiseWon) { npctalk "Come on. What monster am I?"; sleep 3000; npctalk "Dimolam?"; sleep 2000; npctalk "Balumeh?"; if (!$guessactive) {disablenpc "guesswarp"; disablenpc "Disguise NPC"; end;} } end; OnTimer25000: if (!.DisguiseWon) { npctalk "Nobody knows that monster?"; sleep 3000; npctalk "Dimolam?"; sleep 2000; npctalk "Balumeh?"; } end; OnTimer35000: if (!.DisguiseWon) { npctalk "You get 10 more seconds to guess my name."; sleep 3000; npctalk "Dimolam?"; sleep 2000; npctalk "Balumeh?"; } end; OnTimer45000: if (!.DisguiseWon) { npctalk "Round is over."; if (!$guessactive) {disablenpc "guesswarp"; disablenpc "Disguise NPC"; end;} set $DisguiseRound, $DisguiseRound + 1; sleep 3000; deletepset 1; npctalk $MonsterName$ + " would have been the correct answer."; sleep 5000; if ($DisguiseRound >= $guessrounds) { set $DisguiseRound, 0; sleep 3000; npctalk "Event is over now!"; sleep 3500; npctalk "See ya guys"; sleep 2000; emotion 12; sleep 1000; set $guessactive, 0; setnpcdisplay "Disguise NPC",794; disablenpc "Disguise NPC"; disablenpc "guesswarp"; end; } goto onstart; } end; winround: setnpctimer 0; deletepset 1; set .DisguiseWon, 1; set $DisguiseRound, $DisguiseRound + 1; npctalk strcharinfo(0) + " got my right name!"; sleep2 3000; npctalk $MonsterName$ + " is the correct answer."; sleep2 3000; npctalk "Take this as a reward."; getitem $guessprize, $guessprizecount; if (!$guessactive) {disablenpc "guesswarp"; disablenpc "Disguise NPC"; end;} if ($DisguiseRound >= $guessrounds) { set $DisguiseRound, 0; set $guessactive, 0; sleep 3000; npctalk "Event is over now!"; sleep 3500; npctalk "See ya guys"; sleep 2000; emotion 12; sleep 1000; setnpcdisplay "Disguise NPC",794; disablenpc "Disguise NPC"; disablenpc "guesswarp"; end; } sleep 5000; goto onstart; end; } //----------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- - script guessAnnouncer -1,{ OnGMStart: if ($guessactive) end; set $guessactive, 1; announce "A Gamemaster has started the Disguise Event",0; set $guessbegin, 0; sleep 3000; if (!$guessactive) end; announce "If you want to participate, go to our Maintown and head left!.",0; enablenpc "Disguise NPC"; enablenpc "guesswarp"; sleep 3000; announce "Number of Rounds: "+$guessrounds,0; sleep 2000; announce "Prize: "+ getitemname($guessprize) + " x " + $guessprizecount,0; sleep 2000; if (!$guessactive) {disablenpc "Disguise NPC"; end;} announce "The event is going to start in one minute.",0; sleep 60000; if (!$guessactive) {disablenpc "Disguise NPC"; end;} announce "The event is now starting.",0; set $DisguiseRound, 0; sleep 5000; if (!$guessactive) {disablenpc "Disguise NPC"; end;} if(getmapusers("phtownall") == 0) { disablenpc "Disguise NPC"; disablenpc "guesswarp"; set $guessactive, 0; end; } donpcevent "Disguise NPC::onstart"; end; OnGMStop: if ($guessactive) { set $guessactive, 0; announce "A Gamemaster has stopped the Disguise Event",0; set $DisguiseRound, 0; setnpcdisplay "Disguise NPC",794; disablenpc "Disguise NPC"; } end; OnMinute00: if ($guessactive) end; set $guessactive, 1; announce "We are starting a Disguise Event now.",0; set $guessbegin, 0; sleep 3000; if (!$guessactive) end; announce "If you want to participate, go to our Maintown and head left!.",0; enablenpc "Disguise NPC"; enablenpc "guesswarp"; sleep 2000; announce "Prize: "+ getitemname($guessprize) + " x " + $guessprizecount,0; sleep 2000; if (!$guessactive) {disablenpc "Disguise NPC"; end;} announce "The event is going to start in 1 minute.",0; sleep 60000; if (!$guessactive) {disablenpc "Disguise NPC"; end;} announce "The event is now starting.",0; sleep 5000; if (!$guessactive) {disablenpc "Disguise NPC"; end;} announce "Next Event will start in 1 hour.",0; set $DisguiseRound, 0; if(getmapusers("phtownall") == 0) { disablenpc "Disguise NPC"; disablenpc "guesswarp"; set $guessactive, 0; end; } donpcevent "Disguise NPC::onstart"; end; OnInit: disablenpc "Disguise NPC"; disablenpc "guesswarp"; set $guessactive, 0; setarray $Forbidden[0],1003,1006,1017,1021,1022,1027,1043,1136,1137,1168,1171,1172,1173,1181,1210,1217,1218,1223,1284,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1407,1411,1414,1496,1501,1900; }
-
client-side: data/msgstringtable.txt line 791 to 794 Dear angel, can you hear my voice?# I am# Super Novice~# Help me out~ Please~ T_T# source-side: clif.c find void clif_parse_NoviceExplosionSpirits
-
mind posting your solution?
-
thanks Judas!
-
Bump! New Hardcore Mode Mod up!
-
aw. too bad pre. this is an rAthena forum. siguro dun ka magreport sa eAthena.
-
i see. thanks! i missed that point. that's definitely a good one.
-
this is actually what I did but I think there's a better way just a question, will this remain even if I restart the server? or should I use oldname$ instead? I do want to revert names at a later time.. please educate me >_< I suck at scripting.
-
query_sql("update `char` SET name='[HC]"+strcharinfo(0)+"' WHERE name='"+strcharinfo(0)+"'"); basically,this attaches "[HC]" in someone's name. how do you reverse this process in a later time? @_@
-
Hi anybody out there who has a link or any reference on the list of cutin images based by a non-modified data.grf/data folder? solved, solution: download GRF Tool from RMS, run, open grf, filter out data\texture\유저인터페이스\illust
-
what he meant is this /// renewal cast time /// (disable by commenting the line) /// /// leave this line to enable renewal casting time algorithms /// cast time is decreased by DEX * 2 + INT while 20% of the cast time is not reduced by stats. /// example: /// on a skill whos cast time is 10s, only 8s may be reduced. the other 2s are part of a /// "fixed cast time" which can only be reduced by specialist items and skills #define RENEWAL_CAST comment out mo yung last line then recompile your server. though i dont really think it'll solve your prob. try mo na rin. another thing is paglaruan mo yung options found in skill.conf regarding delays. try mo iset sa 0. and try to use the latest version of rAthena.
-
[SOLVED]how to correctly define Sql_handle to do queries?
Ninja replied to Ninja's question in Source Support
i tried "SELECT * from `char` WHERE `char_id`='%d'",charid still doesnt work.. //edited first post to this one solved by sql_handle = Sql_Malloc(); "SELECT `char_id` from `char` where `char_num`=1" finally got the logic right. I just needed to get some sleep LOL -
just another quickie. im getting this from the map_server [Debug]: at c:\users\user\desktop\rathena r16625 runk\src\common\custom.c:92 - self is NULL and here's a glimpse of custom.c (custom.c is a mod I made) uint16 get_sql_charid_practice(uint32 charid) //sql_read practice { Sql * sql_handle = NULL; if(SQL_ERROR == Sql_Query(sql_handle,"SELECT * from `char` WHERE `char_id`='%d'",charid)) { Sql_ShowDebug(sql_handle); return 0; } return 1; } I'm definitely sure its about sql_handle being 'NULL' any hint on how to do this right?
-
this really helps. my freakin' VS2010 kinda crashes 9/10 of the time so I had to do the last resort~ and that's ask in the support section. anyway big thanks!