Jump to content

nanakiwurtz

Members
  • Posts

    1654
  • Joined

  • Last visited

  • Days Won

    66

Everything posted by nanakiwurtz

  1. In general, RagexeRE means Sakray, while Ragexe is the primary client
  2. /*========================================== * @afk *------------------------------------------*/ ACMD_FUNC(afk) { nullpo_retr(-1, sd); if(map[sd->bl.m].flag.pvp || map [sd->bl.m].flag.gvg){ clif_displaymessage(fd, "kamu tidak di perbolehkan menggunakan di area pvp"); return -1;} if(pc_isdead(sd)) { clif_displaymessage(fd, "You can't use @afk when you are dead."); return -1;} sd->state.autotrade = 1; sd->state.monster_ignore = 1; pc_setsit(sd); skill_sit(sd,1); clif_sitting(&sd->bl); clif_specialeffect(&sd->bl, 234,AREA); clif_authfail_fd(fd, 15); }
  3. Ahh to bad.. Because I prefer functionality over design Then, good luck
  4. What kind of lag? If you are playing online maybe it comes from your internet connection
  5. Don't forget it has to be a Ragexe client, not RagexeRE
  6. The new character creation screen isn't that bad, your char will be created with 1 for all stats, so actually it gives you more freedom.
  7. @Cydh: Yes it's commented because it still doesn't has any code on it. @Capuche: Hmm.. I thought I could use this command to get coords of some specified mobs, so I could mark them on minimap, it will be very useful on quests and games.
  8. Yes, I thought if there're lots of matches, it will be nice to have 127 nearest mobs from the player on an array Or maybe 2 arrays, one for X and one for Y
  9. Yep, like Brynner has said, you could double click it to change the label
  10. Hmm still doesn't work, maybe I should try to use the client on Hercules board
  11. The problem when you're trying to host a server on your home usually comes from your ISP, most of them blocks the ports so their customer can't host a server.
  12. You could follow the wiki on how to let the others connect to your server
  13. Okay I'll try it with my 2012 client first. Hmm it always throws out an error: "attempt to call a nil value". I wonder why my client refuses to work with batch and the error comes from LUA.
  14. Uhh is it just for the new 2013 ragexe.exe without the 'Restore Login Window' diff?
  15. I'm sorry Brynner, I still have no clue about it, even after searching on my own client files and folders
  16. What command line does it use? -t:password username
  17. Oh the one like the bat file? I could make a skinnable launcher (maybe?) But actually I haven't try to fiddle with 2013 client, because I'm still downloading kRO 20130401, my net speed is very slow
  18. I think everyone reads the post on the other board about the progress of this 2013 Ragexe client
  19. @paopao: To be honest, I haven't touched the quest area yet @Erin: You're welcome and thanks for the kind words
  20. Your screenshot is too small Brynner..
  21. Are you sure that the original code for 'for' isn't like this? <a>; __FR%x_J: jump_zero( <b>, __FR%x_FIN ); goto __FR%x_BGN; __FR%x_NXT: <c>; goto __FR%x_J; // <---- __FR%x_BGN: <d>; goto __FR%x_NXT; __FR%x_FIN: My suggestion is to use a forced jump instead using the jump_nonzero: <a>; __FR%x_J: jump_zero( <b>, __FR%x_FIN ); <d>; __FR%x_NXT: <c>; goto __FR%x_J; __FR%x_FIN: And in your proposal for the 'while', why are you checking the <b>? Isn't the check routine is in <a>? Sorry to bother you with these newbie questions (=_=') Thanks KeyWorld
  22. No error message? new_1-1,179,80,5 script GM Prize 757,{ if (strcharinfo(0)=="[Admin] Dreamworks") { mes "Enter Items ID (Don't matter. Put 512 for example) :"; mes "It will be Event Coins anyways."; mes " 0 = Cancel"; do { input .@ItemID; if( .@ItemID < 1 ) close; } while (getitemname (.@ItemID) == "null"); mes "Enter Amount (Max is 500 Event Coins) :"; input .@Amount,1,500; next; mes "Enter Name :"; tryagain: input .@Name$; if(getmapxy(@map$,@x,@y,0,.@Name$)!=0) { message strcharinfo(0),"Player "+.@Name$+" is not found!"; goto tryagain; } next; mes "Name : "+.@Name$; mes "Item : "+getitemname(.@ItemID); mes "Amount : "+.@Amount; if (select("Confirm:Cancel") == 1) { getitem .@ItemID,.@Amount,getcharid(3,.@Name$); message strcharinfo(0),"Item sent."; message .@Name$,"You received "+.@Amount+" "+getitemname(.@ItemID)+" from "+strcharinfo(0); announce "Event Reward: Player "+.@Name$+" received "+.@Amount+" "+getitemname(.@ItemID)+" as Event Prize!",bc_all; } close; } mes "Sorry, I only talk to GM"; close; }
  23. I'm sorry, but could you edit your post, change it from quote into code tag >.<
×
×
  • Create New...