Jump to content

Triedge

Members
  • Content Count

    199
  • Joined

  • Last visited

Everything posted by Triedge

  1. I can not use the Div "Load Custom lua file INSTEAD OF iteminfo.lub" client 20140416. Exe used: 2014-04-16aRagexeRE.exe Diff with Nemo.
  2. I have script (Capitalism System) and source mod. Which controls the price of consumables based on several factors, such as flow zenys, supply and demand for consumable items. if demand is currently very high, it is increasing the price of the object based on 5%. Otherwise, it reduces the object's base price 3%. The base price is controlled depending on the flow of current zenys on the server.
  3. 2015-04 DAMN!!!! Wish it could have some undiff version. be compatible with nemo or some way to make a diff.
  4. @@malufett Any updates?
  5. what client support the news maps?
  6. But that does not overwrite the previous value? Previous value => .@test [4] = 5 New Value => .@test [4] = 6 um... you are correct,I got it wrong to overwrite the previous *wanna dig a hole and hide* setarray .@test [getarraysize(.@test)],6,7,8; Not worry
  7. #Freebie = 1; close2; warp "prontera", 156, 191; savepoint "prontera", 156, 191; end;
  8. But that does not overwrite the previous value? Previous value => .@test [4] = 5 New Value => .@test [4] = 6
  9. El problema esta en el codigo del announce. Recuerda que es: intenta usando: - script broadcast#medianoche -1,{OnClock2227: announce "Mensaje de Ejemplo",0; end;}
  10. i think that no neet the value -1 in the operation... .@test [0] = 1 .@test [1] = 2 .@test [2] = 3 .@test [3] = 4 .@test [4] = 5 with: setarray .@test [getarraysize(.@test)-1],6,7,8; produce: .@test [4] = 6 .@test [5] = 7 .@test [6] = 8 I'm right or I'm wrong?
  11. Example Array = 1,2,3,4,5; if(Class == Swordman) Add value: 6,7,8; if(Baselevel > 90) Add value: 9,10; Final Array: 1,2,3,4,5,6,7,8,9,10;
  12. ohhhhhhhhhhhh THX VERY MUCH!!!
  13. Ciertamente recomiendo Hercules para hacer un old schoold Server, pero eso si... debes tener conocimientos de lo que realmente deseas regresar a sus viejas formulas. En el caso de los NPC... ¿realmente es necesario regresarlo todo?
  14. Or... How I can read and modify data MySQL from Source?
  15. I'm doing a modification from the source , but I need that they can be read and modified certain integer values ​​in mapreg table. {// integer variable data->type = C_INT; switch( reg[0] ) { case '@': data->u.num = pc->readreg(sd, script->add_str(reg)); break; case '$': data->u.num = mapreg->readreg(script->add_str(reg)); break; case '#': if( reg[1] == '#' ) data->u.num = pc_readaccountreg2(sd, script->add_str(reg));// global else data->u.num = pc_readaccountreg(sd, script->add_str(reg));// local break; default: data->u.num = pc_readglobalreg(sd, script->add_str(reg)); break; } I have seen this in the source , but not exactly as I modify it to read certain things from the source . And yes, I can read values ​​mapreg from scripts , but I need this to a modification from the source .
  16. damn... no support for Windows XP 32bits? >_<
  17. No me gusta revivir temas antiguos... pero siento que nuevamente Rathena esta muuuuy activo y veo que andan implementando algunas cosas de Hercules en el Rathena. Siendo asi... como va todo con hercules?
  18. Currently I feel the need to make a table with certain numbers, players must put a PIN, the problem is that the saved in the MySQL database often is not the same number, add additional numbers. It would be possible to make the MySQL make a comparison of the last 6 numbers? Example: Number in MysQL: 774485511697 Number in PIN: 511697 As the number 511697 is equal to the last number stored in the MySQL taking as true.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.