Jump to content

wall_cf

Members
  • Posts

    19
  • Joined

  • Last visited

Posts posted by wall_cf

  1. Anyone knows how can i do to the npc send a message to a specify map(1) when in this same map(1) there is somebody and in another map(2) there isn't anybody ??? . The npc has to check if someone go in the map(1) and if there is anyone in the map(2), so it send the message.

     

    I try to do something like this but doesn't work :

     

    if(getmapusers("new_1-2") > 0) {
         mapannounce   "prontera","Now, there is one player doing the test, please wait your turn!",bc_map,0xFF0000;
         end;
    	}
    

     

    i'm not getting to do the npc check if one player go in the map(1)=prontera to the npc send the message.

     

    *map(2) = new_1-2

     

    could anyone help me ?



    I would like to add a code in it that when one player go out from new_1-2, the npc send a message to prontera like " new_1-2 is empty, please go into map the next ".

     

    my code :

     

    prontera,151,182,6	script	John	81,{
    
    end;
    
    OnInit:
        waitingroom "Waiting Room",5,strnpcinfo(3)+"::OnStart",1;
        end;
    	
    OnStart:
    	if( getmapusers( "new_1-2" ) > 0) {
    	attachrid $@warpwaitingpc;
    	announce	"The player "+strcharinfo(0)+" is in the event room!",bc_blue|bc_all;
        end;
    	}
    	
        warpwaitingpc "new_1-2",98,17,1;
        attachrid $@warpwaitingpc;
        announce  "The player "+strcharinfo(0)+" was teleported to the event room!",bc_blue|bc_all;
        end;
    	
    }
    

     

    So, i just need to add something that do it sends a message when a player goes out from new_1-2 . I tried here, but no advance.

     

    Could anyone help me???

  2. You mean :

     

    player 1 is on the map

    • player 2 can enter
    • player 3 can't enter

    none player on the map

    • player 1 can enter
    • player 2 can
    • player 3 can't

    ?

     

     

    No, i'd like that just one player was teleported to the map and the other players wait in the waiting room while the first player stays there, in the map. When the first player go out from the map, the second goes in the map and others wait too and so on. My scrit above isn't working this way, it's teleporting the players to the map, ok, but it isn't doing the second player in the waiting queue teleport immediately after the first player goes out from the map. The second player is getting to teleport just if another player clicks on the balloon above the npc( waiting room). This is my problem, the players don't get to teleport immediately after the player that is in a position above his position gets out from map.

    bump

  3. Could anyone help me?

     

    What need i do to put to go into the map just one by time when the map is empty (like if there is a player in map, nobady can entry but if nobody is in the map just one go into there up to it is empty again), what need i do? i make one modification but the player that is in the waiting room isn't teleported immediately to the map, one player need to click in the balloon to he be able to be teleported.

    When i go in the waiting room with a char he is teleported to the map, so i go in the waiting room with another char and after i remove my first char from the map that he was teleported and my second char continue in the waiting room, nothing happens, but if i click in the balloon with my first char, the second char is teleported to the map.

     

    My script :

     

    prontera,154,186,6	script	Waiting room	81,{
        end;
    
    OnInit:
        waitingroom "Waiting Room",2,"Waiting room::OnStart",1;
        end;
    
    OnStart:
        if(getmapusers("force_4-1")==0) {
            warpwaitingpc "force_4-1",99,12,1;
            attachrid $@warpwaitingpc;
            announce  "The player "+strcharinfo(0)+" was teleported to the event room!",bc_blue|bc_all;
        }
        end;
    
    }
  4. Thank you for help me, your scrit works good, but now to me put to go into the map just one by time when the map is empty (like if there is a player in map, nobady can entry but if nobody is in the map just one go into there up to it is empty again), what need i do? i make one modification but the player that is in the waiting room isn't teleported immediately to the map, one player need to click in the balloon to he be able to be teleported.

     

    prontera,154,186,6	script	Waiting room	81,{
        end;
    
    OnInit:
        waitingroom "Waiting Room",2,"Waiting room::OnStart",1;
        end;
    
    OnStart:
    	if(getmapusers("force_4-1")==0) {
        warpwaitingpc "force_4-1",99,12,1;
        attachrid $@warpwaitingpc;
        announce  "The player "+strcharinfo(0)+" was teleported to the event room!",bc_blue|bc_all;
        end;
    	}
    
    }
    

    Could you give a hint, maybe?

  5. ok, i will try to do it, but the problem is that i don't know how can i will do it, because i don't know the codes i just try to stand, studying the script and learn anything, i got to make that script above searching in others, if you put an egs or hint, it will become more easy to me try to stand, but i will try to do it here and if i don't get i post here again.

  6. is it correct ?

     

    prontera,154,186,6	script	Waiting room	81,{
    
    onstart:
    	warpwaitingpc "force_4-1",99,12,1;
    	end;
    
    OnInit:
    	waitingroom "Waiting Room",10,"::onstart",1;
    	attachrid($@warpwaitingnpc[]);
    	end;
    	
    }
    

     

    could you  say me how/where can I put the speech of the character ?

  7. *warpwaitingpc "<map name>",<x>,<y>{,<number of people>};
    
    This command will warp the amount of characters equal to the trigger 
    number of the waiting room chat attached to the NPC object running this 
    command to the specified map and coordinates, kicking them out of the 
    chat. Those waiting the longest will get warped first. It can also do a 
    random warp on the same map ("Random" instead of map name) and warp to the 
    save point ("SavePoint").
    

    try to apply this.

     

     

    The most near that i reach is it but it doesn't solve my problem :

     

    prontera,154,186,6	script	Waiting room	81,{
    
    onstart:
    	warpwaitingpc "force_4-1",99,12,1;
    	end;
    
    OnInit:
    	waitingroom "Waiting Room",10,"::onstart",1;
    	end;
    	
    }
    

     

    The char that is inside of the waiting room just is teleported if anyone click in the npc, he isn't teleported if there is just one person in the waiting room and too the message doesn't show.

  8. Hey, everyone, i would like to request a script like waiting room, but when the char will be teleported to the event room ,it will be announced in the chat window anything like this " The player "+strcharinfo(0)+"  was teleported to the event room! ". I'd like to request too that when there isn't any player in a certain map, the player that is more time in the chat window can be teleported to this map, just he, nobody more, the rest wait in the waiting room for the map is empty again. Just one player by time can be teleported.

     

    I appreciate if someone can help me!

  9.   3 Name : Allow Chat Flood
     11 Name : Always Call SelectKoreaClientInfo()
     19 Name : Chat @-Bug
     27 Name : Disable 1rag1 & 1sak1
     35 Name : Disable Hallucination Wavy Screen
     43 Name : Disable HShield
     51 Name : Disable Multiple Windows
     59 Name : Disable Nagle Algorithm
     67 Name : Disable RagexeRE Filename Check
     75 Name : Disable Swear Filter
     83 Name : Enable 64K hairstyles
     91 Name : Enable ASCII in Text
     99 Name : Enable Aura Over Level 99 And Level 150
    107 Name : Enable DNS Support
    115 Name : Enable Multiple GRFs
    123 Name : Enable Official Custom Fonts
    131 Name : Enable Title Bar Menu
    139 Name : Fix Camera Angles Full
    147 Name : Force Send Client Hash Packet
    155 Name : Ignore Missing File Errors
    163 Name : Ignore Missing Palette Errors
    171 Name : Increase Headgear View ID
    179 Name : Increase Zoom Out Max
    195 Name : Read msgstringtable.txt
    203 Name : Read questid2display.txt
    211 Name : Remove Gravity Ads
    219 Name : Remove Gravity Logo
    227 Name : Remove Hourly Game Grade Banner
    235 Name : Remove Hourly Playtime-Minder
    243 Name : Remove Login Auto Close
    251 Name : Remove Login Error Code
    259 Name : Remove Serial Display
    267 Name : Restore Login Window
    275 Name : Skip License Screen
    283 Name : Skip Packet Header Obsfucation
    291 Name : Skip Service Select
    299 Name : Translate Client
    307 Name : Translate Client Into English
    315 Name : Use Arial On All Langtypes
    323 Name : Use Normal Guild Brackets
    331 Name : Use Ragnarok Icon
    

     

    hey iracy how do you get to put this option in your diff file " Enable Aura Over Level 99 And Level 150 " ??? ; i'm using the client 2013-07-03 and i'm searching it for all places to try to implement it in my client but i can't get to find it. Can you help me ???

  10.  

     

    Can you help me with this??i have a problem with cant change the screen setup....dunno why..attachicon.giferror.bmp here is the changelogs from the opensetup errorattachicon.giferror3.bmp /help /help /help /help /help

     

    Maybe this can help

     

     

    />/>

     

    Note:
     
    only do this step if you found the problem below
    .

    Problem 1:

    setup resolution
     problem: there is missing file in kRO client\system\lua514\ that file name is optioninfo.lub

    you may download from 
     and put on that folder.<
    /p>
    lockquote>

    Thanks...that problem is solved...but now i've got a new one...start with this when loki was starting attachicon.gifskillerror.png and when im in a game,when a click skill info to see the skill info the window is scrolled down and this warn appeared attachicon.gifskillerror2.png....and what folder that the client read?data folder or data folder translation?i mean if i change anything in data folder translation,does it change anything to client?thanks for any help..

     

    This caused by typo in that file, and because you have update a new revision of translated files right?

    you can dl mine from here

     

    im almost DONE please help me on this ERROR....

     

     

     

     

     

     

    pls reply ASP...thanks...

    i also have this problem when im opening mySQL....

     

    Have you start MySQL Services??? Seems like you haven't start it to me

     

    Help Please.

    Ive got an error when i try to make a guild.

    I make a guild named : "GM Guild". but

    The Guildname was not shown on my char.

    and my name is under the word "Guild Master"

     

    20f87za.jpg

    bump

     

    I'm with this same problem, anyone can help us ??? i've used the same hexed and data of this topic and i follow all steps, but i dont know how i could solve it. 

     

    The GuildMaster is not GUILD NAME. it is your title (position) in that guild. You can change it @ guild information page :)

     

     

     

    Where i can find it, because i am searching and i am not finding it, where do i find it??? in forum rathena(like a tutorial) or in my emulator and  if i find it in my emulator, say to me where is it, please!

     

    -----------------------------------------------------------------------------------------//////-----------------------------------------------------------------------------------

     

    EDIT : I already fix it, my problem was in langtype, thx!

  11. Pessoal, alguém tem alguma idéia do que esteja acontecendo com o nome do char e da guilda, o nome da guilda esta em cima do nome do char e não aparece o nome da guilda também. A fonte da letra também esta diferente, parece estar em " negrito ", alguem sabe como mudar isso???

     

    * Eu criei o servidor usando este tutorial : http://rathena.org/board/topic/84746-tutorial-how-to-create-ragnarok-offline-2013-client-tutorial/   ; usei tudo que foi dito para usar e fazer mas estou com esse erro.

     

    link do erro : http://imageshack.us/photo/my-images/543/53dq.jpg/

     

    ----------------------------------------------------///////////////-----------------------------------------------------------------------------------------------------------

     

     

    EDIT : Consertei já, ^^! Meu problema era no langtype, puz 10 e funciono igual ao do BRO.

     

    OBS: Vamos movimentar mais esta área pessoal, muito fraca!

  12. Help Please.

    Ive got an error when i try to make a guild.

    I make a guild named : "GM Guild". but

    The Guildname was not shown on my char.

    and my name is under the word "Guild Master"

     

    20f87za.jpg

    bump

     

    I'm with this same problem, anyone can help us ??? i've used the same hexed and data of this topic and i follow all steps, but i dont know how i could solve it. 

×
×
  • Create New...