Jump to content

Patskie

Members
  • Posts

    1702
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Patskie

  1. on your clientinfo.xml <langtype>1</langtype>
  2. Literally ALL?
  3. Try 1. { bonus bStr,3; bonus bDex,3; bonus bVit,3; if(BaseClass==Job_Archer || BaseClass==Job_Thief || BaseClass==Job_Swordman) { bonus2 bSubRace,RC_DemiHuman,3; skill "MG_SIGHT",1; } },{},{sc_end MG_SIGHT;} 2. { bonus bStr,3; bonus bDex,3; bonus bVit,3; if(BaseClass==Job_Mage || BaseClass==Job_Gunslinger) { skill "MG_SIGHT",1; bonus bFlee,50; bonus bMaxHPrate,10;} },{},{sc_end MG_SIGHT;}
  4. Put all your client files on a data folder then build the data folder as 1 GRF that's it. no more no less.
  5. sa both clients ba isang lua files lang ginagamit mo?
  6. Compatible ba both lua files and client date? Hmm.
  7. try to port forward your router.
  8. Sa data folder mo ilalagay ang clientinfo then i bubuild mo sya as GRF un lang yun.
  9. What SVN are you using? i believe there is an old way on how to write skill_id and skill_lv in source. Try replacing them by skillid and skilllv
  10. Tama ba kasi yung nakalagay sa EXE file sa config ng thor patcher?
  11. MySQL works on a WAMP server for windows.
  12. If you got error then you must post it. And what rAthena SVN are you using
  13. I see! Thanks
  14. On your src/map/battle.c Find : case MA_DOUBLE: skillratio += 10*(skill_lv-1); Add below : if (sd && sd->sc.data[SC_SPIRIT] && sd->sc.data[SC_SPIRIT]->val2 == SL_ROGUE) skillratio += 2; On your src/map/skill.c Find : //Special message when trying to use strip on FCP [Jobbie] if( sd && skill_id == ST_FULLSTRIP && tsc && tsc->data[SC_CP_WEAPON] && tsc->data[SC_CP_HELM] && tsc->data[SC_CP_ARMOR] && tsc->data[SC_CP_SHIELD]) { clif_gospel_info(sd, 0x28); break; } Add below : if ( sd && tsc && sd->sc.data[SC_SPIRIT] && sd->sc.data[SC_SPIRIT]->val2 == SL_ROGUE && rand()%100 < 20 && ( skill_id == RG_STRIPWEAPON && tsc->data[SC_CP_WEAPON] || skill_id == RG_STRIPSHIELD && tsc->data[SC_CP_SHIELD] || skill_id == RG_STRIPARMOR && tsc->data[SC_CP_ARMOR] || skill_id == RG_STRIPHELM && tsc->data[SC_CP_HELM] ) ) { int item_id = 7139; // Glistening Coat int ii; ARR_FIND( 0, MAX_INVENTORY, ii, sd->status.inventory[ii].nameid == item_id ); if ( ii < MAX_INVENTORY ) { pc_delitem( sd, ii, 1, 0, 0, LOG_TYPE_CONSUME); switch ( skill_id ) { case RG_STRIPWEAPON: status_change_end( bl, SC_CP_WEAPON, INVALID_TIMER ); sc_start( NULL, bl, SC_STRIPWEAPON, 100, skill_lv, d ); break; case RG_STRIPSHIELD: status_change_end( bl, SC_CP_SHIELD, INVALID_TIMER ); sc_start( NULL, bl, SC_STRIPSHIELD, 100, skill_lv, d ); break; case RG_STRIPARMOR: status_change_end( bl, SC_CP_ARMOR, INVALID_TIMER ); sc_start( NULL, bl, SC_STRIPARMOR, 100, skill_lv, d ); break; case RG_STRIPHELM: status_change_end( bl, SC_CP_HELM, INVALID_TIMER ); sc_start( NULL, bl, SC_STRIPHELM, 100, skill_lv, d ); break; } clif_skill_nodamage( src, bl, skill_id, skill_lv, i ); break; } } Note that rand()%100 < 20 is 20% chance. Remove them if you want. Hope this helps
  15. try to remove your GM sprite first? View ID in the item_db.txt must be correct
  16. Ung old setup ginamit mo?
  17. Why don't you use no-repeat on your background so that it will not divide into chunks. Regarding the shifting it's fixed already i guess. lol. try to use no-repeat and i will check again
  18. @Patskie is listening to
  19. Need to know everything about rAthena scripting

  20. prontera,150,150,0 script Sample 100,{ set .@npc$,strnpcinfo(1); if (gettimetick(2) < #timer) { mes .@npc$; mes "Time left : "; mes #timer - gettimetick(2)+ " seconds"; close; } mes .@npc$; mes "Click me!"; next; mes .@npc$; mes "Done!"; set #timer,gettimetick(2) + 60; close; } like this? change 60 seconds to 86400 ( 86400sec = 1day )
  21. I've been in a web industry and yet still a student. Good to know you want to learn HTML and CSS. 1. As a web developer the first thing you must do is to create a wrapper that will center the whole website so that even the user zoom-in or zoom-out the webpage it will not mess up. In your case try to zoom out your webpage and the background will divided into chunks although your web contents are centered. 2. I saw your cascading style sheets here http://shiftro.com/styles.css on the html style why don't you use no-repeat for the background so that it will not be divided in to chunks when zoomed out. On the body part, why you use margin: 0 0; where you can actually put margin: 0; and the rest are good. But i will credit your css because you consider cross-browser compatibility codes. Anyway since you are just starting off with web development. I will assume this is a good start. Keep up the good work.
  22. All you need to do is to edit the css style of the default flux themes. If you want to have your own design then learn PHP + HTML + CSS + JAVASCRIPT/JQUERY and so on. themes/default/css/ - Location
  23. You are on the wrong section
  24. Patskie

    Help! Flux Cp

    That's why you must ask your host if those ports are open on their hosting services. Or if you host your own server check your firewall and so on.
×
×
  • Create New...