Sythe.Org Forums     Register     FAQ     Members List     Calendar     Mark Forums Read    
 
Sythe.Org Forums  
   Runescape Gold

Sythe.org — A Virtual Goods Trading Hub

Make real cash! buying and selling in-game items.

We have a no-scam policy.

You can make thousands playing your favourite games here at Sythe.org.

Just sign up an account and follow the rules!


Take me to

Runescape Markets

Other Game Markets

Support Center

Register an Account

Close
Need Help [ Simba ]
Reply
 
LinkBack Thread Tools Display Modes
  #1  
Old 05-31-2012, 05:21 AM
Member
 
Join Date: May 2012
Posts: 61
Default Need Help [ Simba ]

Getting this error.
HowManyPlayers := 0;
NumberOfPlayers(HowManyPlayers); 0;
CurrentPlayer := i dont dd0s;

with Players[1] do
begin
Name := 'omgihaxxxx';
Pass := 'notforyou';
Pin := ''; // right now banking for hood not supported, might be in future
// so you don't need to fill it just yet
BoxRewards := ['XP', 'Lamp', 'Book', 'mote', 'ostume', 'ssence'];
LampSkill := SKILL_RUNECRAFTING;
Member := false;
Active := True;

[Error] (42:3): Unknown identifier 'HowManyPlayers' at line 41
Compiling failed.

What should i put for howmanyplayers?
__________________
Reply With Quote
  #2  
Old 06-01-2012, 02:00 AM
XWX's Avatar
Forum Addict
 
Join Date: Apr 2005
Posts: 605
Default Re: Need Help [ Simba ]

Code:
HowManyPlayers := 0;  //So you have 0 players?  This should be 1...
NumberOfPlayers(HowManyPlayers); 0;   //Why is there a "0;" here?
CurrentPlayer := i dont dd0s;   //For the first player (or integer) in any array, start with 0, not "i dont dd0s"...

with Players[1] do  //Again, your first player is the first in an array, and arrays start at [0], not [1]
begin
Name := 'omgihaxxxx';
Pass := 'notforyou';
Pin := ''; // right now banking for hood not supported, might be in future
// so you don't need to fill it just yet
BoxRewards := ['XP', 'Lamp', 'Book', 'mote', 'ostume', 'ssence'];
LampSkill := SKILL_RUNECRAFTING;
Member := false;
Active := True;
Hopefully that explains it. Anyways, try this instead:
Code:
Procedure DeclarePlayers;
  begin
    HowManyPlayers := 1;
    NumberOfPlayers(HowManyPlayers);
    CurrentPlayer := 0;
    with Players[0] do
    begin
      Name         := '';
      Pass         := '';
      Pin          := '';
      BoxRewards   := ['XP', 'Lamp', 'Book', 'mote', 'ostume', 'ssence'];
      LampSkill    := SKILL_RUNECRAFTING;
      Member       := False;
      Active       := True;
    end;
  end;
__________________

"It is far better to grasp the Universe as it really is than to persist in delusion, however satisfying and reassuring."

[SRL] (OSR) Monkfishies 1.15
Script count: [R]-21 [C]-18

Reply With Quote
Reply



Cheap RS Gold Store  Runescape Gold

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

All times are GMT +1. The time now is 02:11 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.6.1