Jump to content

sader1992

Content Moderator
  • Posts

    1691
  • Joined

  • Last visited

  • Days Won

    78

Posts posted by sader1992

  1. -    script    LevelUpQuotes    -1,{
    
    OnInit:
        setarray .q$,"I have advanced forward!","There's no stopping me now!","Look at me go!","There's more where that came from.","This isn't even my final form!";
        .num1 = getarraysize(.q$);
        end;
    
    OnPCBaseLvUpEvent:
    	if(!(BaseLevel%10)){
    		getitem 501,10;
    		.@r = rand(.num1); showscript strcharinfo(0)+" : "+.q$[.@r];
    	}
    end;
    }

     

  2. given that everything is right in the script , and your error is only on delitem3 , use 

    delequip .@equip_loc;

    instead of delitem3

    you still need the information to create a new item , but this insure that even if you missed some information about the item (like identify and attribute) the item will get deleted safely and the player can't abuse the system

     

     

     

     

    also you don't need those

    setarray .@OptID[0],0;
    setarray .@OptID[1],0;
    setarray .@OptID[2],0;
    setarray .@OptID[3],0;
    setarray .@OptID[4],0;
    setarray .@OptVal[0],0;
    setarray .@OptVal[1],0;
    setarray .@OptVal[2],0;
    setarray .@OptVal[3],0;
    setarray .@OptVal[4],0;
    setarray .@OptParam[0],0;
    setarray .@OptParam[1],0;
    setarray .@OptParam[2],0;
    setarray .@OptParam[3],0;
    setarray .@OptParam[4],0;

     

    and your forloop for getting the random options

    from

    for (.@j = 0; .@j < 5; .@j++) {
    setarray .@OptID[.@j],getequiprandomoption(.@eq_loc,.@j,ROA_ID);
    setarray .@OptVal[.@j],getequiprandomoption(.@eq_loc,.@j,ROA_VALUE);
    setarray .@OptParam[.@j],getequiprandomoption(.@eq_loc,.@j,ROA_PARAM);
    }

    to

    for (.@j = 0; .@j < 5; .@j++) {
    	.@OptID[.@j] = getequiprandomoption(.@eq_loc,.@j,ROA_ID);
    	.@OptVal[.@j] = getequiprandomoption(.@eq_loc,.@j,ROA_VALUE);
    	.@OptParam[.@j] = getequiprandomoption(.@eq_loc,.@j,ROA_PARAM);
    }

     

  3. -	script	noskill_mapflag_remove	-1,{
    OnInit:
    	if(getmapflag("prt_are_in",mf_noskill))
    		removemapflag "prt_are_in",mf_noskill;
    end;
    }

    put it at the end of your scripts list

    so it would load last

  4. Princess Connect! Re:Dive

    https://myanimelist.net/anime/39292/Princess_Connect_Re_Dive

    isekai

    isekai anime where all the characters is girls except the protagonist

    the anime made as an ad for the game

    プリンセスコネクト!Re:Dive

     

    so I am 3 Episodes in the anime and my opinion:

    it's really good looking Anime

    to be honest the idea before i start watching the anime looked good for me as i am a big Harem fan ?

    however I realized that the male protagonist is more like a side character in the story

    it have some mystery and a lot of screen time , however it does not feels like a protagonist

    for me personally i can't feel but shame that this anime would look much better for me if the protagonist was a real main character

    it might be in the future , however as a first look for now it's not

    if I want to watch a Moe anime I would just search for one , but this setup for me is not relatable nor enjoyable.

     

    i just want to say sorry for Kokoro Chan ,  she could have been pretty good waifu for me for 2020 xD

    Kokoro Natsume/Cards | Princess Connect Re:Dive Wiki | Fandom

     

    Maybe I will check out the game instead d==( ̄▽ ̄).

    or maybe will continue the anime as I am bad at leaving an Anime i already begun to watch.

     

    • Upvote 1
  5. if even after the reload the mapflag is not removed

    make sure there is no where else the mapflag targeting the map

    other files

    or you can disable the mapflag using a script with oninit event at the end of your scripts list

  6. the npc only give a skill with a level of the number of the variable saved when the player give the npc the gym pass

    ofofofofof ?

    you need to increases the skill level , the max in the db is 13 , you can increases it in skill.hpp that back to your skill db and increases it there

    given the skill does support that and it's a "Equation" not a static number , you edit the npc and it will work.

     

    I do not recommend that , i would suggest to give your players more weight with an alternative way instead of increasing the max skill level , however you can do it.

  7. there is too many guides on how to make client files

    little installer is all the client files except data.grf rdata.grf and BGM folder.

     

    those are somewhat out-dated 

    however you can follow the client side guide part in other topic like

     

    the main thing is , you create exe < than get kro client , add your exe to it , remove the data.grf /rdata.grf / BGM folder , compress it to zip and upload it.

    there is some files that you could remove too from the client folder , however you need to be more experienced to move to that topic

    • Like 1
  8. Need more information , I don't think anyone can help you unless someone had this problem and fixed it.

    You should add more information about the problem if you want the help of the others who did not encounter this problem (most of the forum members).

    (server setup , client setup)

×
×
  • Create New...