Jump to content

Tisuuu

Members
  • Posts

    37
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling
  • Location
    Brasil

Recent Profile Visitors

2432 profile views

Tisuuu's Achievements

Poring

Poring (1/15)

3

Reputation

1

Community Answers

  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.
×
×
  • Create New...