|
You last visited: Today at 08:37
Advertisement
Need help with Raid ;I
Discussion on Need help with Raid ;I within the Nostale forum part of the MMORPGs category.
11/01/2018, 00:54
|
#1
|
elite*gold: 100
Join Date: Dec 2016
Posts: 342
Received Thanks: 82
|
Need help with Raid ;I
Hello Guys,
I add the Raid Script in the database and all but now if im ingame i create the Seal and Use it Click ok but nothing happens can anyone help me ?
And before Guys who will say Learn coding or something Dont need to write this i just need help and yeah .. Ty to all who's here to help me..
(Edit):
Sorry for my bad English.
|
|
|
11/01/2018, 03:13
|
#2
|
elite*gold: 0
Join Date: Jul 2013
Posts: 409
Received Thanks: 1,067
|
Well, your script is wrong. Maybe providing a hastebin link with your script could be a good idea so people can help you.
|
|
|
11/01/2018, 03:25
|
#3
|
elite*gold: 100
Join Date: Dec 2016
Posts: 342
Received Thanks: 82
|
its a Raidscript from NosSharp but its not the NosSharp Source..
do you have Discord ?
can u give me maybe a Raid which i can use to try .. ?
idk did is this right ?
|
|
|
11/01/2018, 04:21
|
#4
|
elite*gold: 0
Join Date: May 2012
Posts: 297
Received Thanks: 74
|
what source is
|
|
|
11/01/2018, 04:43
|
#5
|
elite*gold: 100
Join Date: Dec 2016
Posts: 342
Received Thanks: 82
|
Quote:
Originally Posted by MANUEL PERES
what source is 
|
why asking for Source
|
|
|
11/01/2018, 11:28
|
#6
|
elite*gold: 0
Join Date: May 2012
Posts: 297
Received Thanks: 74
|
see if they're the same as yours this code
Code:
if (ServerManager.Instance.IsCharacterMemberOfGroup(session.Character.CharacterId))
{
//TODO you are in group
return;
}
ItemInstance raidSeal = session.Character.Inventory.LoadBySlotAndType<ItemInstance>(inv.Slot, InventoryType.Main);
session.Character.Inventory.RemoveItemFromInventory(raidSeal.Id);
ScriptedInstance raid = ServerManager.Instance.Raids.FirstOrDefault(s => s.RequiredItems?.Any(obj => obj?.VNum == raidSeal.ItemVNum) == true)?.Copy();
if (raid != null)
{
Group group = new Group()
{
GroupType = GroupType.BigTeam,
Raid = raid
};
group.JoinGroup(session.Character.CharacterId);
ServerManager.Instance.AddGroup(group);
session.SendPacket(UserInterfaceHelper.GenerateMsg(string.Format(Language.Instance.GetMessageFromKey("RAID_LEADER"), session.Character.Name), 0));
session.SendPacket(session.Character.GenerateSay(string.Format(Language.Instance.GetMessageFromKey("RAID_LEADER"), session.Character.Name), 10));
if (session.Character.Level > raid.LevelMaximum || session.Character.Level < raid.LevelMinimum)
{
session.SendPacket(session.Character.GenerateSay(Language.Instance.GetMessageFromKey("RAID_LEVEL_INCORRECT"), 10));
}
session.SendPacket(session.Character.GenerateRaid(2, false));
session.SendPacket(session.Character.GenerateRaid(0, false));
session.SendPacket(session.Character.GenerateRaid(1, false));
session.SendPacket(group.GenerateRdlst());
}
break;
|
|
|
11/01/2018, 11:59
|
#7
|
elite*gold: 0
Join Date: Jul 2013
Posts: 409
Received Thanks: 1,067
|
Quote:
Originally Posted by MANUEL PERES
see if they're the same as yours this code
Code:
if (ServerManager.Instance.IsCharacterMemberOfGroup(session.Character.CharacterId))
{
//TODO you are in group
return;
}
ItemInstance raidSeal = session.Character.Inventory.LoadBySlotAndType<ItemInstance>(inv.Slot, InventoryType.Main);
session.Character.Inventory.RemoveItemFromInventory(raidSeal.Id);
ScriptedInstance raid = ServerManager.Instance.Raids.FirstOrDefault(s => s.RequiredItems?.Any(obj => obj?.VNum == raidSeal.ItemVNum) == true)?.Copy();
if (raid != null)
{
Group group = new Group()
{
GroupType = GroupType.BigTeam,
Raid = raid
};
group.JoinGroup(session.Character.CharacterId);
ServerManager.Instance.AddGroup(group);
session.SendPacket(UserInterfaceHelper.GenerateMsg(string.Format(Language.Instance.GetMessageFromKey("RAID_LEADER"), session.Character.Name), 0));
session.SendPacket(session.Character.GenerateSay(string.Format(Language.Instance.GetMessageFromKey("RAID_LEADER"), session.Character.Name), 10));
if (session.Character.Level > raid.LevelMaximum || session.Character.Level < raid.LevelMinimum)
{
session.SendPacket(session.Character.GenerateSay(Language.Instance.GetMessageFromKey("RAID_LEVEL_INCORRECT"), 10));
}
session.SendPacket(session.Character.GenerateRaid(2, false));
session.SendPacket(session.Character.GenerateRaid(0, false));
session.SendPacket(session.Character.GenerateRaid(1, false));
session.SendPacket(group.GenerateRdlst());
}
break;
|
This is probably not the problem. He said he took scripts working on ON.NW sources, that's the reason it's not working.
There are a few differences between Ciapa's source & NosWings source scripted instance labels, try to find a working script for Ciapa's source on this forum, and figure out what's wrong by yourself
|
|
|
11/01/2018, 12:59
|
#8
|
elite*gold: 0
Join Date: Apr 2018
Posts: 149
Received Thanks: 58
|
The problem is that the creator of this topic uses Kint Source. And from what I know raids in this code do not work.
|
|
|
11/01/2018, 14:18
|
#9
|
elite*gold: 0
Join Date: Dec 2009
Posts: 177
Received Thanks: 127
|
Quote:
Originally Posted by Radiv
The problem is that the creator of this topic uses Kint Source. And from what I know raids in this code do not work.
|
Wrong.
Erixor already told you the problem.
Ciapa's source and NosWings source have some difference. At the last, are like some Capital letter different xD
Check on the Source the scripted definition and try to see if on the xml is write in the same way.
Sorry for my bad eng but i think that is easy to understand xD
|
|
|
11/01/2018, 15:26
|
#10
|
elite*gold: 100
Join Date: Dec 2016
Posts: 342
Received Thanks: 82
|
Guys Ive get help from anyone The Problem was i did somethings false in DB and the raid was Coded false i guess but now it works ty for helping and @  i have some questions to ur Parser Privat massage me pls ..
|
|
|
11/01/2018, 15:38
|
#11
|
elite*gold: 0
Join Date: Oct 2018
Posts: 36
Received Thanks: 6
|
how to put this code to fix raid? seals
Quote:
if (ServerManager.Instance.IsCharacterMemberOfGroup(s ession.Character.CharacterId))
{
//TODO you are in group
return;
}
ItemInstance raidSeal = session.Character.Inventory.LoadBySlotAndType<Item Instance>(inv.Slot, InventoryType.Main);
session.Character.Inventory.RemoveItemFromInventor y(raidSeal.Id);
ScriptedInstance raid = ServerManager.Instance.Raids.FirstOrDefault(s => s.RequiredItems?.Any(obj => obj?.VNum == raidSeal.ItemVNum) == true)?.Copy();
if (raid != null)
{
Group group = new Group()
{
GroupType = GroupType.BigTeam,
Raid = raid
};
group.JoinGroup(session.Character.CharacterId);
ServerManager.Instance.AddGroup(group);
session.SendPacket(UserInterfaceHelper.GenerateMsg (string.Format(Language.Instance.GetMessageFromKey ("RAID_LEADER"), session.Character.Name), 0));
session.SendPacket(session.Character.GenerateSay(s tring.Format(Language.Instance.GetMessageFromKey(" RAID_LEADER"), session.Character.Name), 10));
if (session.Character.Level > raid.LevelMaximum || session.Character.Level < raid.LevelMinimum)
{
session.SendPacket(session.Character.GenerateSay(L anguage.Instance.GetMessageFromKey("RAID_LEVEL_INC ORRECT"), 10));
}
session.SendPacket(session.Character.GenerateRaid( 2, false));
session.SendPacket(session.Character.GenerateRaid( 0, false));
session.SendPacket(session.Character.GenerateRaid( 1, false));
session.SendPacket(group.GenerateRdlst());
}
break;
|
|
|
|
11/01/2018, 15:43
|
#12
|
elite*gold: 100
Join Date: Dec 2016
Posts: 342
Received Thanks: 82
|
Quote:
Originally Posted by NosBattle
how to put this code to fix raid? seals
|
This is not the fix if u have the same problem just send me ur Discord
|
|
|
11/01/2018, 18:54
|
#13
|
elite*gold: 0
Join Date: Apr 2018
Posts: 149
Received Thanks: 58
|
my discord Radiv#5681
|
|
|
 |
Similar Threads
|
Shared Kills on raid 1 and raid 2
12/05/2015 - Shaiya Private Server - 6 Replies
Is this possible via script by sharing kills from raid 1 and raid 2 on the same pvp area?
|
Savage Raid Reborn [Factions] [Raid] [PVP] [Classes] [Rpg] [Bosses]
06/18/2014 - Minecraft Server Advertising - 1 Replies
:lol: Savage Raid Reborn :lol:
IP: Play.SavageRaid.org
Owners: Klowe10 & Louis1
Hello Enjin Forum Member! Welcome to a page dedicated to Savage Raid Reborn displaying its signifying great features. Please check out this amazing server and join a amazing community filled with hardcore raiders, excellent pvpers and competitive people. Become a member of this community and thrive with us.
History:
Savage Realms Raid has been around for 3 years. Over those 3 years, hundreds enjoyed Savage...
|
[Selling] Power lvling/ Looking for raid/ Proffesion lvling/ Flex raid
12/07/2013 - World of Warcraft Trading - 0 Replies
we offer a wide veriaty of services includeing power lvling, looking for raid, proffesion lvling, flex raid, mount farming and alot more upon request. we also sell gold for the cheapest price around (only on zul'jin server) . we are quick and at the same time very preffesional with getting the job done. we also have a site that you can follow up on at owowitems.com that explains all prices and forms of services.
always available on skype at proofmoney2418 i have skype on my phone too so...
|
Apropros Huhn Raid (Dark) Ich suche Stammi Spieler auf S3 Für den Huhn Raid^^
04/27/2011 - Nostale - 3 Replies
Die Spieler sollten Eier haben, Holly, Gunner, Wk, Ice, Dg, Jäger, Bersi oder Crusi haben^^
Ansonsten Spiele ich heute den Ganzen tag Nos durch T.T Und da kommt schon a bissl lw auf^^ Wenn wir genug sind, könnt ihr auch eure Lows mitnehmen (Ihr kriegt dann 2 Kissten) Aber das Können nicht alle tun!
Habe schon ein paar Ig leute die klar mitmachen würden (ca 3-5 Leute) also Meldet euch^^ Ach ja Ich bin in Mom Lv 46 mit Jäger +5 aber mache so gut wie jeden Tag dauerraids auf Ch5 oder 3!
...
|
All times are GMT +1. The time now is 08:37.
|
|