Jump to content

Promise

Members
  • Posts

    386
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Promise

  1. Yes it does. Depends on what say on the whisp. If you say stats, it gives you allstats +40, if you want to edit it, just delete some stats lines.
  2. - script buffs -1,{ OnWhisperGlobal: switch(@whispervar0$) { case "blessing": sc_start SC_BLESSING,360000,10; break; case "maya": sc_start SC_INTRAVISION,360000,0; break; case "stats": sc_start SC_FOOD_LUK_CASH,1800000,40; sc_start SC_FOOD_DEX_CASH,1800000,40; sc_start SC_FOOD_STR_CASH,1800000,40; sc_start SC_FOOD_VIT_CASH,1800000,40; sc_start SC_FOOD_INT_CASH,1800000,40; break; } } Im not sure if it works, but should be something like this.
  3. - script buffs -1,{ OnWhisperGlobal: switch(@whispervar0$) { case "blessing": sc_start SC_BLESSING,360000,10; break; case "maya": sc_start SC_INTRAVISION,360000,0; break; } } Could be something like this.
  4. Are you sure that u have correct commented these lines? //OnWhisperGlobal: //OnLoginCmnd: //OnPCLoginEvent: This means that the server checks when some player login or whisp the npc, so if they are commented, the script shouldn't check those things.
  5. Bueno, recién estoy estructurando el panel y estudiando como podría integrar el emulador a la página para un buen funcionamiento. De momento va lento por temas de diseño y planificación, pero estaré posteando por foro a medida que vayan habiendo avances. Saludos.
  6. You must add an item as a normal custom item, adding it to the server and into your GRF file, then in the item script on item_db, you must change the item type. Something like this: Here you have the Imp Hat as a normal hat, with the normal item script. if you want to convert it as a costume hat, you only must change the item type 256 -> 1024 You have to change the Loc column to the Costume Loc ID: Upper HeadGears (Normal -> Costume): 256 -> 1024 Middle HeadGears (Normal -> Costume): 512 -> 2048 Lower HeadGears (Normal -> Costume): 1 -> 4096 Thats how you change a normal item to costume item, to create a new one, you need to create a normal custom item with the correspondent Loc ID on the item_db
  7. Loc: Equipment location of armor and arrow-type items. Values below can be combined, i. e. 136 would indicate both accessory slots (typical value for accessories). (2^0) 1 = Lower headgear (2^1) 2 = Right hand (2^2) 4 = Garment/Robe (2^3) 8 = Accessory 1 (2^4) 16 = Armor (2^5) 32 = Left hand (2^6) 64 = Shoes (2^7) 128 = Accessory 2 (2^8) 256 = Upper headgear (2^9) 512 = Middle headgear (2^10) 1024 = Costume Upper headgear (2^11) 2048 = Costume Middle headgear (2^12) 4096 = Costume Lower headgear (2^13) 8192 = Costume Garment/Robe (2^15) 32768 = Arrow (arrow-type items only) (2^16) 65536 = Shadow Armor (2^17) 131072 = Shadow Weapon (2^18) 262144 = Shadow Shield (2^18) 524288 = Shadow Shoes (2^20) 1048576 = Shadow Accessory 2 (2^21) 2097152 = Shadow Accessory 1
  8. You can just hex your exe to change some reading files, like clientinfo.xml, ini file, etc. So if they re-patch the client, they wont be able to log-in to the server, unless they make same modifications to the .exe file.
  9. Hola Mysterius, Te comento que actualmente no existe ningún panel de este tipo de OpenSource, es decir, si estabas buscando nombre de un panel similar, me temo que no será posible ayudarte en ese sentido. Respecto a alguien que pueda desarrollarlo, te comento que actualmente estoy trabajando en un panel de este tipo, no podría darte un tiempo especifico pero para más adelante estará y creo que lo dejaré de open source a todo aquel que quiera utilizarlo. Saludos.
  10. View File Registration WebTemplate / SemiCoded Hi guys, just designed a web template, too lazy to php/sql it, so... ill give it away for free to anybody who wants to give it a good use. * Do NOT sell it as a personal work. Submitter Promise Submitted 03/09/17 Category Other Web/CP Scripts Content Author  
  11. View File Free LoadingScreen 1 A loading lost on my disk... Submitter Promise Submitted 03/10/17 Category Loading Screens Content Author  
  12. set StatusPoint,StatusPoint + x;
  13. Maybe it isn't an instance created before that check. if( instance_id ) data->u.str = (char*)i64db_get(instance_data[instance_id].regs.vars,reference_getuid(data)); else { ShowWarning("script:get_val: cannot access instance variable '%s', defaulting to \"\"\n", name); data->u.str = NULL; } Check there, in script.c shows: if (!instance_id) { ShowWarning("script:get_val: cannot access instance variable '%s', defaulting to \"\"\n", name); data->u.str = NULL; }
  14. really?... OnInit: .minplayer2start = 2; // minimum players to start (ex. if 3vs3, set to 3) .eventlasting = 20*60; // event duration before auto-reset (20 minutes * seconds) setarray .rewarditem[0], // rewards for the winning team: <item>,<amount>,... 7828, 4; end; OnStart: .minplayer2start = 2; // minimum player .minplayer2start = 5;
  15. Version 1.0.0

    503 downloads

    A loading lost on my disk...
    Free
  16. Version 1.0.0

    1462 downloads

    Hi guys, just designed a web template, too lazy to php/sql it, so... ill give it away for free to anybody who wants to give it a good use. * Do NOT sell it as a personal work.
    Free
  17. Can you upload 3 files: data/clientinfo.xml src/common/mmo.h db/packet_db.txt Sometimes this error ocurrs, because you need to change the packet_ver: on packet_db default -> 51
  18. Check your console and tell us if are showing any error when you try to summon monsters.
  19. duel: true invite: true leave: true accept: true
  20. This is a script i made for my server, very simple. - script announcer-script -1,{ OnMinute00: switch(rand(1,20)) { case 1: announce "[SelkRO]: Recuerda votar por el servidor cada 12 horas",bc_all; break; case 2: announce "[SelkRO]: Recuerda usar @partysearch para buscar party, te puede ser util.",bc_all; break; case 3: announce "[SelkRO]: Puedes revisar tus cooldown de los partyquests con @partyquest",bc_all; break; case 4: announce "[SelkRO]: Cualquier duda/sugerencia/queja puedes realizarla en el foro.",bc_all; break; case 5: announce "[SelkRO]: En SelkRO tenemos mapas exclusivos de Battleground",bc_all; break; case 6: announce "[SelkRO]: Al terminar BG obtendrás Cash Points dependiendo si ganas o si pierdes",bc_all; break; case 7: announce "[SelkRO]: En morocc hay un NPC que te ayuda a ingresar al [Morocc Party Quest]",bc_all; break; case 8: announce "[SelkRO]: Contamos con BGs rotativos (TvT - Conquest - CTF)",bc_all; break; case 9: announce "[SelkRO]: No le des tu contraseña a nadie, el staff nunca te la pedirá",bc_all; break; case 10: announce "[SelkRO]: Usa @request para enviar un mensaje a todos los miembros del staff conectados",bc_all; break; case 11: announce "[SelkRO]: Vota porel servidor y obtén libros de experiencia...",bc_all; break; case 12: announce "[SelkRO]: Las SelkRO Costume Box[0] contienen items únicos, que no puedes obtener de otra manera!",bc_all; break; case 13: announce "[SelkRO]: Por 20 BGs jugados, te puedes llevar una SelkRO Box[0] o una SelkRO Costume Box[0]",bc_all; break; case 14: announce "[SelkRO]: Participa en los Party Quests y obten increibles premios!",bc_all; break; case 15: announce "[SelkRO]: Tip: Vota por el servidor y consigue pets únicos",bc_all; break; case 16: announce "[SelkRO]: Tip: ¿Sabías que tenemos más de 50 quest hats?",bc_all; break; case 17: announce "[SelkRO]: Tip: Las MvP Coins caen a 5% y se utilizan en la MvP Machine de prontera",bc_all; break; case 18: announce "[SelkRO]: Tip: Canjea nuestras event coins en el NPC de prontera EventShop",bc_all; break; case 19: announce "[SelkRO]: Participa de nuestros eventos automáticos y gana Event Coins",bc_all; break; case 20: announce "[SelkRO]: Reporta cualquiér tipo de Bug, el abuso de ellos provoca un baneo permanente",bc_all; break; default: announce "[SelkRO]: Reporta cualquiér tipo de Bug, el abuso de ellos provoca un baneo permanente",bc_all; break; } }
  21. Can you show us how you added the map, and wich error is shown?
  22. Can you show us some item code of the db?
  23. I think it isn't. The clients only shows uppers slots on costume windows, and its hard to add special slots if you aren't expert on that.
×
×
  • Create New...