Jump to content

Jaburak

Members
  • Posts

    1125
  • Joined

  • Days Won

    31

Everything posted by Jaburak

  1. Guide; http://rathena.org/wiki/Custom_Jobs
  2. I think it's a packet_db problem, what client are you using?
  3. Did you change something in your src folder before?
  4. You can only get the gift once every hour. If you relogged; it will only show the delay. set .Hour,1;
  5. trunk/db/re/skill_require_db.txt Find: 378,0,0,60:70:80:90:100,0,0,0,99,0,0,none,0,678,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 Replace: 378,0,0,60:70:80:90:100,0,0,0,99,0,0,none,0,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  6. Jaburak

    About Carts

    Try this; trunk/src/map/clif.c Find and Remove: #ifdef NEW_CARTS if( (type == 5 && sd->status.base_level > 90) || (type == 4 && sd->status.base_level > 80) || (type == 3 && sd->status.base_level > 65) || (type == 2 && sd->status.base_level > 40) || (type == 1)) #endif pc_setcart(sd,type); }
  7. Did you try minimizing your skill window?
  8. You can easily change the amount of hour in the script.
  9. prontera,137,176,5 script WoE Prize Giver 1002,{ if ( agitcheck() ) { mes "a war is currently in progress"; mes "if your guild owned a castle ask your guild master to see me to claim the reward"; close; } if ( getcastledata( .castlename$,1 ) == getcharid(2) ) { if ( $castle_claimed ) { mes "your guild already received the reward"; close; }else if ( getguildmasterid( getcharid(2) ) == getcharid(0) ) { mes "receiving the reward for "+ .castlename$[.@menu]; getitem 7227,100; // some mathematics ... getitem 674,10; getitem 14232,10; set $castle_claimed,1; close; }else { mes "ask your guild master to see me"; close; } } mes "your guild failed to take reward"; mes "if your guild owned a castle ask your guild master to claim reward from me"; close; OnAgitEnd: set $castle_claimed, 0; // everytime woe ends the variable resets end; OnInit: set .castlename$, "prtg_cas01"; waitingroom "Woe Prize",0; end; }
  10. I'm using latest revision of rA, and 2012-04-10 client and it's working fine.
  11. I want to suggest this Premium System from pRO, iRO. pRO VIP System iRO VIP System
  12. Jaburak

    Hair Style

    Find: // Payment Currency + Cost // Can be ITEM ID or Any Variable. setarray .currency$, "512", // Hairstyle - Ex. need Apple "#CASHPOINTS", // Hair Color - Ex. need CASHPOINTS "Zeny"; // Cloth Color - Ex. need Zeny setarray .cost, 123, // Hairstyle ( 123 Apple ) 5432, // Hair Color ( 5,432 CASHPOINTS ) 12345; // Cloth Color ( 12,345 Zeny ) Replace: // Payment Currency + Cost // Can be ITEM ID or Any Variable. //setarray .currency$, // "512", // Hairstyle - Ex. need Apple // "#CASHPOINTS", // Hair Color - Ex. need CASHPOINTS // "Zeny"; // Cloth Color - Ex. need Zeny //setarray .cost, // 123, // Hairstyle ( 123 Apple ) // 5432, // Hair Color ( 5,432 CASHPOINTS ) // 12345; // Cloth Color ( 12,345 Zeny )
  13. Jaburak

    Hair Style

    // Payment Currency + Cost // Can be ITEM ID or Any Variable. setarray .currency$, "512", // Hairstyle - Ex. need Apple "#CASHPOINTS", // Hair Color - Ex. need CASHPOINTS "Zeny"; // Cloth Color - Ex. need Zeny setarray .cost, 123, // Hairstyle ( 123 Apple ) 5432, // Hair Color ( 5,432 CASHPOINTS ) 12345; // Cloth Color ( 12,345 Zeny )
  14. Jaburak

    Hair Style

    Yea, that's why I included Emistry Adv. Stylist. // Blacklisted Style for each style and each gender. // --- Female --- .blacklist_hairstyle_0$ = "2,4,6"; .blacklist_haircolor_0$ = "1,3,5"; .blacklist_cloth_0$ = "1,2,3";
  15. Try this.. trunk/src/map/status.c Find: switch (i) { //Type 0: PC killed -> Place here statuses that do not dispel on death. case SC_ELEMENTALCHANGE://Only when its Holy or Dark that it doesn't dispell on death if( sc->data[i]->val2 != ELE_HOLY && sc->data[i]->val2 != ELE_DARK ) break; case SC_WEIGHT50: case SC_WEIGHT90: Add below: case AL_BLESSING: case AL_INCAGI:
  16. Jaburak

    Hair Style

    trunk/conf/battle/client.conf // Valid range of dyes and styles on the client. min_hair_style: 0 max_hair_style: 27 min_hair_color: 0 max_hair_color: 8 min_cloth_color: 0 max_cloth_color: 4 Or better use Emistry Advanced Stylist; http://rathena.org/board/files/file/2859-advanced-stylist/
  17. I changed the map to test it. And yea maybe that's your problem.
  18. I tried your script in my test server and seems like there's no problem in it. I suggest to revert it back to original script then restart your server, sometimes oninit doesn't workfine if you only use @loadnpc.
  19. Try this. whobuy.patch
  20. It's a client limitation I think.
  21. I am using 2012-04-10 and it's working fine.
×
×
  • Create New...