Jump to content

Patskie

Members
  • Posts

    1702
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Patskie

  1. Are you using rAthena?
  2. Show your current script here
  3. 3 8 5 8 3 8 5 9 3 8 6 0
  4. If multiple rows are returned by the query. You can use like the following in sql : SELECT SUM(column_name) FROM table_name WHERE value = some_value;
  5. how did you fixed it? want to share? thanks! Just add rand() % <chance> in the script to activate chance in single strip.
  6. trunk/conf/battle/player.conf didn't get you from a single glance. You mean set the attack speed? A script that will add +5 attack speed? What? // Maximum atk speed. (Default 190, Highest allowed 199) max_aspd: 190
  7. Patskie

    what?

    trunk/doc/atcommands.txt --------------------------------------- @item <item name/ID> {<amount>} /item <item name> Creates an item. ---------------------------------------
  8. Patskie

    npc ask?

    http://rathena.org/board/topic/81888-how-to-put-time-interval-before-player-can-talk-to-the-npc/
  9. Currently developing my own learning management system using PHP and MYSQL! God bless!

  10. Information Technology Project I

  11. OnAgitEnd: warp "<map>",<x>,<y>;
  12. Patskie

    PVP Ladder

    I provided everything and yet. -___-
  13. Patskie

    how!

    http://rathena.org/wiki/Gettime http://rathena.org/wiki/Gettimetick
  14. I think you need client modification here
  15. Or if you want -> http://rathena.org/board/topic/66721-inds-handy-guild-commands-ea-ra-port/
  16. - script hourlypoints -1,{ //--Start of the Script OnPCLoginEvent: attachnpctimer ""+strcharinfo(0)+""; initnpctimer; end; OnTimer30000: //Check if Vending (normal or @at) if(checkvending() >= 1 || checkchatting() == 1) { dispbottom "The hourly badge rewards has stopped because you were vending / Pub Room. Please relog if you wish to start again."; stopnpctimer; end; } OnTimer60000: set @minute, @minute + 1; //Check for 1 Minute if(@minute == 60){ set @minute,0; set #CASHPOINTS, #CASHPOINTS + 2; dispbottom "You received 2 CASHPOINTS for staying 1 hour in-game."; set @consecutive_hour, @consecutive_hour + 1; } //Check for 12 hours consecutive if(@consecutive_hour == 5) { set @consecutive_hour,0; set #CASHPOINTS, #CASHPOINTS + 10; dispbottom "You received 10 CASHPOINTS for staying 5 hours in-game."; } stopnpctimer; initnpctimer; end; }
  17. Patskie

    BET

    prontera,150,150,0<TAB>script<TAB>Gambler<TAB>100,{
  18. Patskie

    BET

    prontera,150,150,0 script Gambler 100,{ set .@npc$,"[ " +strnpcinfo(1)+ " ]"; set .@chance,30; // 30% chance set .@zeny,40000000; mes .@npc$; mes "Bet with me " +strcharinfo(0); if ( select("Yes:No") - 1 || Zeny < .@zeny ) end; if ( rand(100) < .@chance ) set Zeny, Zeny + ( .@zeny * 2 ); else set Zeny, Zeny - .@zeny; }
  19. Patskie

    PVP Ladder

    -<TAB>script<TAB>PVPLADDEROPTIONS<TAB>-1,{ http://rathena.org/board/topic/82874-pvp-warper-w-dota-sound-and-ladder-global/?p=200249
  20. http://rathena.org/board/topic/82874-pvp-warper-w-dota-sound-and-ladder-global/?p=200249
  21. You can try euphy woe controller trunk/npc/custom/woe_controller.txt
  22. Patskie

    pls help me

    Set a mapflag mapname mapflag nodrop
  23. guild_vs2<TAB>mapflag<TAB>loadevent
  24. trunk/conf/battle/player.conf? // Players' will drop a 'Skull' when killed? // 0 = Disabled // 1 = Dropped only in PvP maps // 2 = Dropped in all situations bone_drop: 0
  25. even player can use this? Normal players can use this. GM cannot
×
×
  • Create New...