Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/24/14 in Posts

  1. DEV KURO, ALSO KNOWN AS AARON PATRICK CATULIN, is a scammer. I had made a deal with him for $110AUD for a full project, client side and server side. Partial payment of $70AUD was to be made to him on 4 Sept 14 before he started on work. Having made the payment, be began to start ignoring me and did not want to produce the files. He last replied me on 14 Sep 14. He ignored me for over a month till 11 Oct 14 before I disputed the payment. I had no choice but to dispute the paypal payment, but with the good being intangible, my dispute was declined. Only then did he bother to reply, 12 Oct 14. He assured me that he will produce the goods and that it would be done within 2 weeks. He promised he would reply, but again, he went missing and did not want to reply me till date, 22 Nov 14. I'm now scammed and here's the evidence. To those who want to engage in his services, BEWARE. I know there's no way he's going to give me my files since he's ignored me for so long. As a Christian, I'm going to try to forgive him and let him do whatever he wants. But it's only right for me to inform everyone else, lest they get scammed too. Just feeling quite sad to be this unfortunate. Thanks for reading and be careful!
    1 point
  2. I believe it depends on what you put when you patched/diffed your client, but it's usually in the system folder. Edit: Mine is in the system folder, but yours can be in your root directory,
    1 point
  3. /*========================================== * channelmes (sends message to given channel) *------------------------------------------*/ BUILDIN_FUNC(channelmes) { const char *channel_name = script_getstr(st,2), *msg = script_getstr(st,3); struct Channel * channel = channel_name2channel(channel_name,NULL,0); if( channel ) { DBIterator *iter; struct map_session_data *user; char message[CHAN_MSG_LENGTH]; snprintf(message, CHAN_MSG_LENGTH, "[ #%s ] %s",channel->name, msg); iter = db_iterator(channel->users); for( user = (struct map_session_data*)dbi_first(iter); dbi_exists(iter); user = (struct map_session_data*)dbi_next(iter) ) { //I didn't use clif_channel_msg or channel_send here, because they need a sender sd... clif_colormes(user,channel->color,message); } } return SCRIPT_CMD_SUCCESS; } BUILDIN_DEF(channelmes,"ss"), //usage: channelmes("#main","Hi, I am "+strcharinfo(0)+".");
    1 point
  4. If you're using newer clients (2013+), then you should edit the ItemInfo.lua (or lub) file instead of those .txt files. Hope this helps.
    1 point
  5. download dari sini bisa ngga? http://s000.tinyupload.com/index.php?file_id=94148337967984395766
    1 point
  6. maybe your referring to this topic? http://rathena.org/board/topic/61862-guide-spriting-101-creating-a-sprite-and-act-file/
    1 point
  7. prontera,150,160,5 script auto cmd 87,{ mes "you can enable yours commands on login"; next; while(1) { for ( .@i = 0; .@i < .size_cmd; .@i++ ) .@menu$ = .@menu$ + "[ " + ( auto_cmd & pow( 2,.@i ) ? "^00ff00ON" : "^ff0000OFF" ) + " ^000000] @" + .cmd_display_name$[.@i] + ":"; .@s = select( .@menu$ ) -1; auto_cmd = auto_cmd ^ pow( 2,.@s ); mes "ok what's next?"; .@menu$ = ""; next; } OnPCLoginEvent: if ( auto_cmd == 0 ) end; for ( .@i = 0; .@i < .size_cmd; .@i++ ) { if ( auto_cmd & pow( 2,.@i ) ) atcommand "@" + .cmd_display_name$[.@i]; } end; OnInit: setarray .cmd_display_name$[0], "autoloot", "commands"; .size_cmd = getarraysize( .cmd_display_name$ ); } or http://rathena.org/board/topic/92360-utility-onpclogin-gm-settings/?p=243632 http://rathena.org/board/topic/76131-login-commands/?p=166229
    1 point
×
×
  • Create New...