Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    409

Everything posted by Emistry

  1. 2189
  2. 2187
  3. there is already alot of pvp script in the forum already.. with pub .....with map users showing....etc.... .use search engine. http://upaste.me/6b4941050cf7c82
  4. 2185
  5. 2180
  6. 2178
  7. vist my topic and search for Multi Currency Shop
  8. erm..currently i didnt have this version of refiner.. will consider to add in future... * Feel like a Simple Refiner Function is getting Complex.....>.<
  9. 2175
  10. 2170
  11. 2167
  12. 2165
  13. 2163
  14. 2161
  15. i think you can just simply set the value to 0 ...i dont think player will still try to exchange it when they cannot get any TCG for it.
  16. 2158
  17. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/groups.conf
  18. your way ... OnInit: waitingroom "PVP : "+getmapusers("pvp_y_1-2")+" Users",0; sleep 1000; my way... OnInit: while( 1 ){ delwaitingroom; waitingroom "PVP : "+getmapusers("prontera")+" Users",0; sleep 1000; } end; did you see the different ? i told you in the previous post ~ your checking process is not repeated..so it keep show 0...the status is not updated...
  19. see the way i did...and the way you did... ur process are not repeated....mine are repeated with the while loop..
  20. change announce [ .@name$ + " ] is now the new Guild Master of guild [ " + GetGuildName(getcharid(2)) + " ]", 0; into this announce "[ "+.@name$ + " ] is now the new Guild Master of guild [ " + GetGuildName(getcharid(2)) + " ]", 0; next time..specify the error....
  21. swt ....already told you in previous post.... make sure you check at this part also...add in the other mvp / miniboss / restricted card id here function DetermineCard { // Restricted Card setarray .@CardLists,4001,4002,4003,4004; for( set .@i,0; .@i < getarraysize( .@CardLists ); set .@i,.@i + 1 ) if( getarg(0) == .@CardLists[.@i] ){ mes "This Card is Forbidden."; close; } // MVP Card setarray .@CardLists,4342,4359,4357,4361,4363,4365,4367; for( set .@i,0; .@i < getarraysize( .@CardLists ); set .@i,.@i + 1 ) if( getarg(0) == .@CardLists[.@i] ) return 3; // MiniBoss setarray .@CardLists,4197,4211,4201,4188,4183,4184; for( set .@i,0; .@i < getarraysize( .@CardLists ); set .@i,.@i + 1 ) if( getarg(0) == .@CardLists[.@i] ) return 2; // Others return 1; }
  22. aw...i forgotten that the GM Xeon WOE setter are using his own Guild files...>.< you use that Woe Setter from GM Xeon right ? did you renamed any NPC in his script ? try dun edit anything and run it...
  23. Emistry

    Playtime NPC

    the logincount is exist in the login table of your SQL. and the count will increase everytime you relog your account...
  24. ur calculation.....wrong ? ((Delay_Heal - gettimetick(2)) % 10) this will lead to a wrong message if the users have set to a delay that is higher than 10.. because the value will shown are only in the range of 0 ~ 9 use this...it is more than enough ~ xD ( Delay_Heal - gettimetick(2) )
  25. 2156
×
×
  • Create New...