Jump to content

Yuka

Members
  • Posts

    333
  • Joined

  • Last visited

Everything posted by Yuka

  1. My bindatcmd seems to be outdated, since this works: bindatcmd "testkk",strnpcinfo(0)+"::OnTestThis",0,40; Where this does not: bindatcmd "testkk",strnpcinfo(0)+"::OnTestThis",0,40,1; So how can I upgrade my rAthena or at least my bindatcmd to have it working? Thanks in advance!
  2. getitembound2 .@id,1,1,.@ref,0,254,0,getcharid(0)&0xffff,(getcharid(0)>>16)&0xffff,1; This signs the item with the invoking character's name. Now is there a way to sign it with the invoking character's guild's name? getcharid(2) does not work.
  3. sc_start SC_EXPBOOST,23423423423423423,100; I want to give a player a permanent status, is there another way than just picking a huuuge number? What is the maximum time for a status given by this way?
  4. Hi, I am running a High-Rate server, but I still want to entertain people who are into PvM alot. So my idea is to implement a lowrate into my highrate server. I will use SC_EXPBOOST with a negative value to have mob exp decreased. (You need to edit your status.c for that) I have set Quest EXP to x1. Now I can save those who dedicated themselves for this task and OnPCLoginEvent I can start their negative SC_EXPBOOST with a very long duration. (this should work?) Is there any way but killing mobs or doing quests to obtain EXP? King regards
  5. Ohh that looks great. Will try tomorrow. This works fine. Now I just need to block or edit Quest EXP for those who want to use this.
  6. Bump. How can I add a new status doing this? I'm sure it's not that hard. x_x
  7. When using Scream a Dancer/Gypsy sometimes says "@dance xx" instead of a sentence. This is my data/dc_scream.txt SCREAM Kyaaaa----! Nyang-* Argggggh!! Stop drinking!! Hey you punk!! See if I ever listen to you! Stop smoking!! Stop smoking or else I'm going to join you!! I hate second hand smoking!! Psh.. not even rich ----!! You try living off of this much Zeny!! Go make some Zeny if you're insulted!! Weeee~~~~! Yaaaaaaa~~~~Hoooooooooooo ----!!! Sign here sign here!! It's over!! Let's end it here!! What am I supposed to live off of!! Take care of my daughter!! Claim your daughter!! You punk! What are you going to do about your child! Hey you punk--!! Hey!! You still call yourself a human! Sweety!! Are you really going to leave like this?! Are we.. seriously over? Huh!!! What am I supposed to do without you!!!! I'm pregnant!!!!! Save me!! Somebody's following me! Agh! What do you think you're doing -! Hey! Get away from me! AAAAHHHHH--!! Wha.. Where do you think your hands are going!!!! Why are you doing this to me!! We're still young!! We have our lives in front of us~!! I'm not ready yet!! Not yet!! Just a little... Wait just a little more! No--!! I'm a teacher and you're my student! This relationship will never work! Let's meet again when we're more mature!! If you're a little older... then... maybe ~~! Yeah! I love him. I love him! Is that such a crime?! I don't care what other people say.. I love him! Sorry to you.. but.. I can't help it! I already fell in love!! Hey... why do you have to be my friend's boyfriend?! Why!! Why my friend!! Why my friend out of all the people~!!! Honey!! Babes!! Love you babes!! Love you! I love you ---!! Love you lots!! I said I love you! What do you want me to do! I don't need anything!! You're all dead! Argh! Was I just a joke to you?! Say something! Now!! Waaah!! *Sniffles*... waaah!! I don't care-!!! Hohohoho! Call me your majesty! Oh- ho- hohoho! Kyaaaaaaaah~! Arrrrrrrrrrgh....! Are you going to kill me if I don't give you an item -------!!!! You think I'm that easy ------!!!!! No--------------!!!!!!! No no! NO!! Leave me alone-----------!!!!! Don't come-------!!!! Don't come near me!! Get away from me!!!! AHHH-------------------!!! You dirty punk!! Go away!! I'm going to cry... if you touch me!! I'm going to cry!!! Those who lie...... don't even have the right to love!! No~ Not here ~* BAH~~~~~~~~~~~~~~ AHHH~~~~~~~~~~~~~~~ Grr~~!!! Can't you hear me ~ ??? Get down! You can't trust me?! Hug~ me~ closely!!!!!!!!!!!!!! Hug me!! Argh!! Die. Just die!!!!!!!!! Poring ! Poporing !! Popopopopoporing!!!!!!!!!! Kyaaa~ It's a pervert ~~ Waaah Guess who ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ All going to die~~!!!!!!! Shush ~~~~~~!! Be quiet ~~~~!!!! Agh! Eh?! Oh my!!!! Huh! What is this!! Eh?! What is this!! Who do you think you are! Hah! Take me somewhere ---!!!!! I'm lonely!!!! Lonely! I'm lonely and how could you!!!! Do you know me?!!! I'm not just what you think I am!!!! There must be some misunderstanding!!!!! Do you still love me?!!! Not everything is the way you see it!!!! Listen to me!! That's not true! It's a misunderstanding!!!! Am I pretty?!!!!!! Next is!!!!!!!!!!!!!!! Mmm ~* My skill is lame!! Why? Because it is lame ~_~ Lame huh? Yeah. Damn, I'd have to say that was pretty stupid... What a pathetic sight. Yes... yes I agree, that in fact was pretty lame. Enter "Funny Comment" Here. Oh boy, what the *Bleep* was that! Little help over here pansies... Not the face...NOT THE FACE! Any idea? D: Bump.
  8. This does not show the red mute icon and cannot be canceled by sc_end SC_NOCHAT; x_x There is MANNER_NOSKILL in the status.h, maybe I can use this? But how do I start and end it?
  9. *bindatcmd "command","<NPC object name>::<event label>"{,<group level>,<group level char>,<log>};So this should work right? : - script testffkk -1,{ OnTestThis: dispbottom "hello"; end; OnInit: bindatcmd("testkk",strnpcinfo(0)+"::OnTestThis",0,0,1); end; } It only works when I remove the last arguement. Guess my version is too old? You may wanna set Group Char Level to 40+ that way players can't use it on others.Also, your script should be: - script testffkk -1,{ OnTestThis: dispbottom "hello"; end; OnInit: bindatcmd "testkk",strnpcinfo(0)+"::OnTestThis",0,40,1; end; } Yes, I've thought about that as well. So, I still have the problem that it does only work when I leave out the last argument for log on/off. This is because my rAthena version is too old, right?
  10. *bindatcmd "command","<NPC object name>::<event label>"{,<group level>,<group level char>,<log>}; So this should work right? : - script testffkk -1,{ OnTestThis: dispbottom "hello"; end; OnInit: bindatcmd("testkk",strnpcinfo(0)+"::OnTestThis",0,0,1); end; } It only works when I remove the last arguement. Guess my version is too old?
  11. How can I give a player that red silence by script? I want to use it for blocking someone's skill usage in CTF.
  12. Wow, this effect gets removed by Dispell... Do you have another idea, or how can I stop having it removed by Dispell? Well it's not only Dispell, you also can use Tuxedo or Wedding Dress to cancel the effect. x_x Guess I need to find something else. What's the red silence called you get when spamming to fast? It blocks skill usage as well, doesn't it?
  13. Ohhh.. thank you. Sorry but how do I fill <group level> and <group level char>? Group level should be 0 I guess so that everyone can use it. But what's group level char? I've tried 0 but then my script breaks.
  14. Yes, I think your script is fine too.. I'm afraid that he either wants to scamm me or he did a mistake and does not tell me about it.
  15. So is there ANY possible way to delete character B when using your script on character A? The only way I can think of is a bug rAthena-wise that both characters have the same character ID.
  16. A user just reported this. I checked your script again and most likely am 100% sure that it cannot happen. Especially since your delete the character on logging out. Thus it is IMPOSSIBLE to have another character deleted on logging out his Novice. Any ideas?
  17. Well thus I would to add it for all classes and races? x_x Isn't there a way to add a new SC status?
  18. Wow this is strange, it worked with 24bitmap before. But changing it to 256 actually fixed it this time, thanks.
  19. Hi, I have added my minimaps as 24-bitmap with a size of 400x400 in my server's grf at data\texture\유저인터페이스\map They used to work, but after installing Harmony they do not work anymore. x_x I tried patching them again, but this does not work as well. I load my grf first in data.ini Any ideas?
  20. Hi, since my client is bugging with the character deletion, I've just written a script to do it. Could you please check if it is not exploitable/ doing something wrong? It seems to work fine for me though, but would be glad to have someone checking it before releasing it. lhz_in03,255,257,3 script Chardel 93,{ set .@accid, getcharid(3); mes .npcname$; mes "Hello ^6495ED"+strcharinfo(0)+"^000000."; mes "Would you like to delete a character?"; if (select("No:Yes") == 1){ next; mes .npcname$; mes "Alright, see you then."; close; } next; mes .npcname$; mes "Please enter the Character's name."; mes "Note that you can only delete characters on your own account."; input(.@charname$); query_sql "SELECT account_id FROM `char` WHERE name = '"+.@charname$+"'",.@accid2; if (.@accid != .@accid2){ next; mes .npcname$; mes "^ff0000I could not find this character on your account!^000000"; close; } if (strcharinfo(0) == .@charname$){ next; mes .npcname$; mes "^ff0000Please log in with a different character to delete this one.^000000"; close; } next; mes .npcname$; mes "Do you really want to delete this character?"; if (select("No:Yes") == 1){ next; mes .npcname$; mes "Alright, see you then."; close; } next; mes .npcname$; mes "Okay, I have deleted this character from your account."; query_sql "DELETE FROM `char` WHERE `name`='"+.@charname$+"'"; close; end; OnInit: set .npcname$, "[^6495EDCharacter Deletion^000000]"; end; } Thanks!
×
×
  • Create New...