Jump to content

Tisuuu

Members
  • Posts

    37
  • Joined

  • Last visited

Everything posted by Tisuuu

  1. The LGP of the Functor does something similar to this, which works very well by the way, it is a great resource that I use and I like a lot, but I think the question of the topic is how to do it in such an illustrated and organized way, with images on the floor made entirely illustratively with letters, bixinhos and etc ...
  2. data/luafiles514/lua files/signboardlist.lub
  3. Why don't you try to implement this form?
  4. Okay, install the script and ask for details, preferably by entering parts of the code to make it easier to help.
  5. There are several such scripts here in the community, your request has already been made by many other players, search here you will find. In the latter case you should take a custom script and reuse the code, there are several systems that do timekeeping, daily login, vip system, gold room, presence system among others. Start practicing the search tool right now, and start being more curious when fiddling with scripts before your server comes up with a bug that you will get totally lost, at which point it may be too late. Someone may appear here with the script ready because it is a simple and easy script, but this is not advisable precisely because it is a simple and easy script. If you don't find the script here in the community let us know that I will help you use the search tool.
  6. I advise you to search here in the community a ready vip system, preferably from someone known to many, they are already ready with this management you need, in this case you install the script in your emulator and will ask for support here when difficulties arise. I've seen some of these settings available here in the community, just research about it, about the double aura I never saw, never researched about it and I don't know if this is possible, but if it is just make a personalized and permanent effect.
  7. The first thing I'm going to say is always leave your code correctly identified: for (set .@c, 0; .@c < .@size; set .@c, .@c + 1) mes "Top ^FF0000" +(.@c + 1) +"^000000 ^0000FF" + .@nombre$[.@c] +"^000000 "; for(.@i = 0; .@i < getarraysize(.@size); .@i++) { message .@nombre$[.@i],"Alguien os busca"; close; //CODE HERE } Notice the code above, it has 2 repeating structure doing the same thing. Another thing, if you want to show all players within a replay structure you need to let it run smoothly, In the code above inside the repeating structure we see the command "Close;", this causes the code to stop the first time it runs. An effective way to show this result in a conversation with npc would be like this: set .@size, query_sql( "select nombre from asesinoss where exp > 10 order by exp desc limit "+ .top, .@nombre$); for(.@i = 0; .@i < getarraysize(.@size); .@i++) { mes "Top ^FF0000" +(.@i + 1) +"^000000 ^0000FF" + .@nombre$[.@i] +"^000000 "; } close; OnInit: // Script Configuration set .a, 1; // set .top, 10; // end; } Notice that "Close;" got out of the repeating structure... Now if you want each player to receive the message you need to set an event for it, in which case the message only appears in a conversation with npc.
  8. for(.@i = 0; .@i < getarraysize(.@size); .@i++) { mes .@nombre$[.@i]; //CODE HERE }
  9. prontera,0,0,0 script teleport HIDDEN_NPC,{ OnNPCKillEvent: getmapxy(@map$,@x,@y,0); if(killedrid == 1038 ) { //IDMOB if(@map$ == "prontera") { //MAPEVENT atcommand "@warp izlude 121 120"; //MAPTELEPORT } } end; } Not tested, if there are any errors here..
  10. Hi Naruto, thanks for replying. I even tried to open the file in the ACT editor to try to modify, jejejeje... I wonder if it would be too much work to create a custom mob on emperium and put it to work in place of the original emperium, with the same functions.
  11. The mob is not affected by the @monsterbig command, I wonder if there would be any way to visually increase the size of the emperium inside the castle, can anyone tell me how to do this? Thank you in advance!
  12. I know it has nothing to do with the topic but I hate to see that a person has given their time answering a topic and still creating / modifying a script and does not get a reputation or correct answer.
  13. The guy gives you the answer and you don't have the ability to thank him or even click as the right answer and I liked the guy's answer, hopefully your next topic will not pay attention.
  14. Thanks for answering my topic Functor, can you tell me in which version of hexed this problem does not exist?
  15. I apologize for this, something happened that I did not pay attention, I thought I had posted in English and did not see. Yeah, the default resolution is this, but when I try to shrink it, the character selection screen gets cut, can it give me any direction?
  16. Does anyone know how to solve or solve a hex problem if you put a smaller option than the default. Example: - This only happens on the character selection screen. Default resolution: - Its Ok. Resolution test 800x600: - Problem. Have a solution to this problem? @edit Sorry for posting in portuguese
  17. Does anyone know how to solve or solve a hex problem if you put a smaller option than the default. Example: - This only happens on the character selection screen. Default resolution: - Its Ok. Resolution test 800x600: - Problem. Have a solution to this problem? @edit
  18. Are these unexpected closures constant? I am creating a server now and would not want to go through this, however I never suffered it on my offline server, even after days of testing, since the problem of resolution I still have, i to be doubt that after throwing the date into a grf he would solve himself, i never tested. Do you know of any alternatives to the resolution problem?
  19. @edit First of all sorry for the kind of res I gave to the topic. I would just like to call a custom cutin instead of the BG configuration window, can anyone tell me where the calling function of these menu buttons is? @Akkarin @Secrets I'm sorry for tagging you, I just wanted one direction, I saw in the forum that you have a good reputation for helping others.
  20. Hello, I would like to ask for help in customizing battleground button function in icon bar. (spoiler 1) In this case, I would not like to use battleground on the server, so I already disabled all npcs and their functions but I would like to customize this screen as an informational medium for players who do not have battlegorund on the server. What am i saying? I would just like to call another image other than the one above, ie I need to identify the function that calls this image from the battle_field folder, can someone please tell me how I do this or give me a path? Ps¹: Completely removing this button from the menu would also be an option but at diff hexed time you only have the option to hide and not remove it, it has white space in place and doesn't fill with another icon. Off: I am another novice who has years that do not move with this and after a long time I am coming back. First of all I would like to say that I am someone very curious to learn how to do what I am asking, so any direction that could be pointed out would be giving me a great help.
  21. O emulador está configurado como pre-re? E o arquivo de mob aberto também é o da pasta pre-re?
×
×
  • Create New...