|
You last visited: Today at 14:49
Advertisement
Server nostale
Discussion on Server nostale within the Nostale forum part of the MMORPGs category.
04/02/2018, 22:35
|
#1
|
elite*gold: 0
Join Date: Dec 2017
Posts: 46
Received Thanks: 3
|
Server nostale
How to fix the skill bar bug (Q W E) that fades us on our private server? (I'm a founder of a server) thanks who has the code or other solution? 
|
|
|
04/03/2018, 00:00
|
#2
|
elite*gold: 150
Join Date: Sep 2010
Posts: 2,070
Received Thanks: 821
|
Which server software? Which "skill bar bug (Q W E)"?
If you are a founder of a server, don't you have to get it fixed without posting such a unnecessary post?
Btw: It was not required to open a new thread.
|
|
|
04/03/2018, 08:07
|
#3
|
elite*gold: 195
Join Date: Mar 2015
Posts: 332
Received Thanks: 207
|
Quote:
Originally Posted by IceTrailer
Which server software? Which "skill bar bug (Q W E)"?
If you are a founder of a server, don't you have to get it fixed without posting such a unnecessary post?
Btw: It was not required to open a new thread.
|
mate stop being so toxic just write here if you want help and dont blame others maybe he was trying it and dont got it. And if you did not understand it, you can say it nice too.
|
|
|
04/03/2018, 10:34
|
#4
|
elite*gold: 50
Join Date: Jan 2017
Posts: 3
Received Thanks: 1
|
He means the skill bar bug when on q,w,e the skills are disappearing when you use a buff or another skill. Only 1-9 works.
|
|
|
04/10/2018, 20:11
|
#5
|
elite*gold: 100
Join Date: Dec 2016
Posts: 342
Received Thanks: 82
|
anyone knows how can i Fix it or get the old skill bar back ?
|
|
|
04/10/2018, 20:14
|
#6
|
elite*gold: 0
Join Date: Mar 2013
Posts: 679
Received Thanks: 252
|
For Official Server, Search a Backup from OldInterface and change the Version Number.For Pserver make a Launcher with Backup from Oldinterface.
|
|
|
04/13/2018, 00:40
|
#7
|
elite*gold: 0
Join Date: Apr 2018
Posts: 17
Received Thanks: 2
|
use old client
|
|
|
04/13/2018, 00:52
|
#8
|
elite*gold: 50
Join Date: Feb 2018
Posts: 151
Received Thanks: 130
|
Modif this -->
public IEnumerable<string> GenerateQuicklist()
{
string[] pktQs = { "qslot 0", "qslot 1", "qslot 2" };
for (int i = 0; i < 10; i++)
{
for (int j = 0; j < 3; j++)
{
QuicklistEntryDTO qi = QuicklistEntries.FirstOrDefault(n => n.Q1 == j && n.Q2 == i && n.Morph == (UseSp ? Morph : 0));
pktQs[j] += $" {qi?.Type ?? 7}.{qi?.Slot ?? 7}.{qi?.Pos.ToString() ?? "-1"}";
}
}
return pktQs;
}
To This
public IEnumerable<string> GenerateQuicklist()
{
string[] pktQs = { "qslot 0", "qslot 1", "qslot 2" };
for (int i = 0; i < 30; i++)
{
for (int j = 0; j < 3; j++)
{
QuicklistEntryDTO qi = QuicklistEntries.FirstOrDefault(n => n.Q1 == j && n.Q2 == i && n.Morph == (UseSp ? Morph : 0));
pktQs[j] += $" {qi?.Type ?? 7}.{qi?.Slot ?? 7}.{qi?.Pos.ToString() ?? "-1"}";
}
}
return pktQs;
}
Is not really " Hard " and u dont need an Old client
|
|
|
04/13/2018, 10:21
|
#9
|
elite*gold: 100
Join Date: Dec 2016
Posts: 342
Received Thanks: 82
|
Zanouu thats not working i tried it and its not working....
do u have another solution ?
|
|
|
04/13/2018, 10:42
|
#10
|
elite*gold: 50
Join Date: Feb 2018
Posts: 151
Received Thanks: 130
|
Quote:
Originally Posted by InnoTx
Zanouu thats not working i tried it and its not working....
do u have another solution ?
|
His Working verry Well , is done on my P.server , Do you have Compile Ur source Before Testing ? i thinks No .
|
|
|
04/13/2018, 10:55
|
#11
|
elite*gold: 100
Join Date: Dec 2016
Posts: 342
Received Thanks: 82
|
did i do something wrong ?
|
|
|
04/13/2018, 10:57
|
#12
|
elite*gold: 50
Join Date: Feb 2018
Posts: 151
Received Thanks: 130
|
Its Good , Just compil ur source and try
|
|
|
04/13/2018, 11:10
|
#13
|
elite*gold: 100
Join Date: Dec 2016
Posts: 342
Received Thanks: 82
|
Ok now its working Ty so much
|
|
|
04/16/2018, 22:01
|
#14
|
elite*gold: 0
Join Date: May 2012
Posts: 29
Received Thanks: 62
|
Quote:
Originally Posted by Zanouu
Modif this -->
public IEnumerable<string> GenerateQuicklist()
{
string[] pktQs = { "qslot 0", "qslot 1", "qslot 2" };
for (int i = 0; i < 10; i++)
{
for (int j = 0; j < 3; j++)
{
QuicklistEntryDTO qi = QuicklistEntries.FirstOrDefault(n => n.Q1 == j && n.Q2 == i && n.Morph == (UseSp ? Morph : 0));
pktQs[j] += $" {qi?.Type ?? 7}.{qi?.Slot ?? 7}.{qi?.Pos.ToString() ?? "-1"}";
}
}
return pktQs;
}
To This
public IEnumerable<string> GenerateQuicklist()
{
string[] pktQs = { "qslot 0", "qslot 1", "qslot 2" };
for (int i = 0; i < 30; i++)
{
for (int j = 0; j < 3; j++)
{
QuicklistEntryDTO qi = QuicklistEntries.FirstOrDefault(n => n.Q1 == j && n.Q2 == i && n.Morph == (UseSp ? Morph : 0));
pktQs[j] += $" {qi?.Type ?? 7}.{qi?.Slot ?? 7}.{qi?.Pos.ToString() ?? "-1"}";
}
}
return pktQs;
}
Is not really " Hard " and u dont need an Old client 
|
Sorry but i dont find these line, in where solution is it? thanks guy!
|
|
|
04/17/2018, 01:00
|
#15
|
elite*gold: 100
Join Date: Dec 2016
Posts: 342
Received Thanks: 82
|
You have to go to OpenNos.GameObject in ur Source and then to Character.cs
then Click Ctrl+F and then search for :IEnumerable then u have to Change that what Zanouu has (The first Spoiler) Post To this :
and after all u have to Compile it.
Sry about my English
|
|
|
All times are GMT +1. The time now is 14:51.
|
|