Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/16/14 in all areas

  1. I'll look into it, might have missed it with all those venders in the way.
    1 point
  2. Usually made with CCS3 and Html(5), which is a whole other task to learn. Use rAthena search tool for guides on installing flux. Good luck with your adventure.
    1 point
  3. oh ? where ? me wanna see it me love to rewrite other member's paid scripts <3 now you give me the motivation to start this script [paste=jxhqd5hxel9] EDITED: update and fixed [paste=33s2sgyvou08]
    1 point
  4. //Initialization of the Rewards add_item(8042,1,1,"Vote Token Exchanger");every 1 votes point from `cp_v4p_voters` gives you 1 Item ID 8042 ...hmm, I'm sure there must be a guide somewhere in this forum tells you how to set this stuffs ..
    1 point
  5. mapname,x,y,z script Badge Distributer 123,{ if( gettimetick(2) < KMV_wait_time ) { mes "You can only receive badges once per day."; close; } getitem .itemID, .amt; set KMV_wait_time, gettimetick(2) + ( 3600 * 24 ); mes "Congratulations on reaching the 99th floor."; mes "Here are your daily KMV Badges!"; close; OnInit: set .itemID, KMV_badge_id_number; //Item ID of the item to be given. set .amt, 500; //Amount to be given.
    1 point
  6. no.1 bug I found is $prace_bidders is actually an array inside the OnInit: do deletearray $prace_bidders instead of set it 0 .. no.2 bug is you changed prace_playing into @prace_playing means if the one who 1st placed the betting log out, the rest won't get the price for(set .@i,0; .@i < (getarraysize($prace_bidders)); set .@i, .@i + 1){ if(attachrid($prace_bidders[.@i])){ if (@prace_playing!=1) end; ....... }it ends the script immediatelymaybe change it to continue; might work no.3 have you try login 2 accounts and start the bet with both of them ? it seems this script start the npc timer THE MOMENT ANY PLAYER placed their bets I thought, an event script like this, the npc timer shouldn't be controlled by the players, but from OnClock something ... even if you want to do it that way, you should use a npc variable .start or something and check if the event has already started or not... haiz ... I don't understand why the timer is set to 60000 for registration and set to 0 when the race going to start ... really made me misunderstood that part, I don't think any normal scripter will want to script it this way ... hmm .. too unoptimized ... to read ... nvm ... reading this script seriously hurting my eyes ... how come you can get the race started ? the startnpctimer is located inside a function, and I thought npc timer has to be on the npc itself ? <-- not tested tested ... can ... wtf ... I just know about this ... I used *sleep too much <.< seriously ... I would rather rewrite the whole script than just keep guessing where the bug come from the labels jump here and there makes this script seriously hard to read I getting this error after finally get the race started [Error]: script:run_func: C_ARG not found. please report this!!! [Debug]: Source (NPC): Poring#prace1 at cydonia (103,54)dunno what kind of error is thisbut don't feel like debug this script anymore I would prefer that you translate the script made by Masao instead of using this hard to read script
    1 point
  7. http://rathena.org/board/topic/73169-player-checker-npc/?p=150668 http://www.eathena.ws/board/index.php?showtopic=268999 actually if you have indexed the `char_id` column in `char_bg` table, you can actually do a JOIN statement set .@nb, query_sql( "select `char`.name, char_bg.win, char_bg.lost from char_bg left join on `char` where `char`.char_id = char_bg.char_id order by char_bg.win desc limit 10", .@name$, .@win, .@lost ); I just prefer to do like that because I don't need to remember or look for the table has been indexed properly or not so if you didn't indexed that table, my syntax will perform the search faster than this join ones in your case, the `win` column from `char_bg` table should be indexed
    1 point
  8. strcmp("<string>","<string>") commit: d569d28 This command compares two strings are returns a value: 1: string 1 > string 2 0: strings are equal -1: string 1 < string 2 Don't know how this wasn't in the emulator for so long - it should open up a lot more scripting possibilities. ^^
    1 point
  9. Router Web Interface: something like NAT/QoS Port Forwarding do it like 80 port -> your_local_ip:80 port
    1 point
  10. Ressuscitando só pra lembrar que se for "apenas com level igual ou abaixo de 70", a condição correta seria <= e não somente <.
    1 point
  11. check Euphy topic in Script Release section if you are looking for his script
    1 point
×
×
  • Create New...